我正在使用Dreamweaver 6编写电话应用程序。 我的ajax在我的浏览器上没有任何结果返回错误,并且我的所有手机都没有返回任何内容(这意味着手机没有读取代码),但它在Dreamweaver实时视图中返回了所需的结果。 以下是代码
//I removed the last part of the $uri for security reasons
var $uri="http://62.173.32.43?";
var Y1="87FBA0AC7252EDD6";
var Y2=Encrypt(key,uniqueSession);
var Y3=(Encrypt(key,MSISDN));
var fulladd = $uri +
"OPERATION=" +
Y1.toString() +
"&SESSION_ID=" +
Y2.toString() +
"&MSISDN=" +
Y3.toString() +
"&USE_XML=True";
$.ajax({
type: "GET",
url: fulladd,
dataType: "xml",
success: function(){
alert("done...");
},
complete: parseXML,
error: function(){
alert("Error Connecting, ensure you are connected to the internet");
});