{ url: "http://ドメイン/○○?キー=値",
type:"post" }※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
function btn1Click(mouseEvent) {
var msg = document.getElementById("msg");
WinJS.xhr({ url: "http://tuyano-sample.appspot.com/getvalue?tag=a", type: "post" })
.done(function complete(result) {
// Report download.
msg.textContent = result.responseText
msg.style.backgroundColor = "#336666";
},
function error(result) {
msg.textContent = "ERROR!!: " + result.statusText;
msg.style.backgroundColor = "#FF0000";
});
}
| << 前へ |