我想重定向我的getJSON響應低於另一個HTML頁面是兩個HTMLS的getJSON響應重定向到另一個HTML頁面
的index.html
$(document).ready(function() {
alert("load");
$.getJSON("http://10.0.2.2:8080v1/service/26/1",
function(data) { //want to redirect this response display.html
$.each(data, function(id, obj){
$.each(obj, function(propName, value){
// console.log(propName + ": " + value);
alert("propName: "+propName+" value: "+value);
});
});
});
document.addEventListener("deviceready", onDeviceReady, true);
});
function onDeviceReady(){
navigator.notification.alert("PhoneGap is working");
}
</script>
</head>
<body>
</body>
</html>
display.html
在代碼這我有代碼以表格的形式顯示響應數據。你能幫我現在如何發送的getJSON響應display.html並在此
<body>
<table width="100%" cellspacing="3">
<tr align="center">
<td bgcolor="#474646" style="color: #fff; >first column</td>
<td bgcolor="#474646" style="color: #fff; >second column</td>
<td bgcolor="#474646" style="color: #fff; >third column</td>
</tr>
<tr align="center">
<td>firstcolumn</td>
<td>secondcolumn</td>
<td>thirdcolumn</td>
</tr>
</table>
</body>
你爲什麼不在display.html中做'getJson'? – 2012-03-16 15:07:12
你能說我哦如何顯示在表中的響應,如果我寫在display.html的getjson – user1265530 2012-03-16 18:43:02