タイトル通りアレコレ試してるだけの状態ですが、
K氏にサブドメ切ってもらって開設しました。
http://water-moon.pg-box.jp/
更新は鈍足になると思いますが
それでも良ければ引き続き見て頂けると幸いです(゜_゜;)
aqua-moonにする予定だったのに忘れてた・・・w
2013/10月中旬から半年間の記録を書き留める予定。
http://android.wktk.so/ があるのを知って開始しました。
<html> <head> <title>testA</title> </head> <script type="text/javascript"> <!-- function test(){ // window.alert("test"); head.submit(); } --> </script> <body> <form name="head" method="GET" action="bb.php"> <input type="button" onclick="test()" value="おしてみよう!"> <input type="hidden" name="userid" value="12345"> </form> </body> </html>
<html> <head> <title>bb</title> <script type="text/javascript" src="prototype.js"></script> </head> <script type="text/javascript"> window.onload = function(){ var url = String(window.location); var query = url.toQueryParams(); var a = query['userid']; window.alert(a); } </script> <body> <p>遷移できました</p> </body> </html>
public class IndexAction { @Execute(validator = false) public String echo() { return "call.jsp"; } @Execute(validator = false) public String getString() { return "aaa"; } }
{ "kanto" : [ { "name": "sps渋谷店", "address": "東京都渋谷区" }, { "name": "sps目黒店", "address": "東京都目黒区" }, { "name": "sps練馬店", "address": "東京都練馬区" }, { "name": "sps江東店", "address": "東京都江東区" }, { "name": "sps千代田店", "address": "東京都千代田区" } ], "kansai" : [ { "name": "sps綾部店", "address": "京都府綾部市" }, { "name": "sps京丹後店", "address": "京都府京丹後市" }, { "name": "sps城陽店", "address": "京都府城陽市" }, { "name": "sps福知山店", "address": "京都府福知山市" }, { "name": "sps舞鶴店", "address": "京都府舞鶴市" } ] }
<?php $json = file_get_contents('jsondata.json'); $shops = json_decode($json,true); echo $shops['kanto'][0]['name']; ?>