是否有人知道如何使用手机间隙连接到localhost网络服务?因为我只使用html和javascript而且我在c#visual studio上创建了web服务....请帮助任何人。 我手机上的错误是[对象],我正在使用我从phonegap加载修复得到的IP地址 这是我的代码ajax $(document).ready(function(){
$("#btnLogin").click(function(){
var username = $("#username").val();
var password = $("#password").val();
url: 'http://192.168.43.11:26606/caterers.asmx/LoginPhoneGap', //26606
type: 'post',
// dataType: 'json',
data: {userEmail: username,
userPass:password},
success:function (data)
{
alert(data);
},
error: function (xhr, desc, errs) {
console.log(errs);
console.log(desc);
alert(xhr);
location.reload();
}
});
});
});