mui調用webservice


document.getElementById("confirm").addEventListener('tap', function() {
var respnoseEl = document.getElementById("response");
respnoseEl.innerHTML = '正在請求中...';
mui.ajax('http://192.168.0.79:8080/SMSService.asmx/Request', {
data: {
'_arg0: username',
'_agr1: password'
},
dataType: 'json', //服務器返回json格式數據
type: 'post', //HTTP請求類型
timeout: 10000, //超時時間設置爲10秒;
success: function(data) {
//服務器返回響應,根據響應結果,分析是否登陸成功;
respnoseEl.innerHTML = 'w...';
},
error: function(xhr, type, errorThrown) {
//異常處理;
debugger
respnoseEl.innerHTML = xhr.statusText+'**'+errorThrown;
console.log(type);
}
});


})(mui); ajax

相關文章
相關標籤/搜索