日期:2014-05-16 浏览次数:20419 次
var System={};
var t=document.getElementsByTagName("SCRIPT");
t=(System.scriptElement=t[t.length-1]).src.replace(////g, "/");
System.path=(t.lastIndexOf("/")<0)?".":t.substring(0, t.lastIndexOf("/"));
var path = System.path;
path = path.replace(".","")
//。。。。。
$.post(path + "DataManager.ashx", { type: "getspotstree" }, function (data) {
//alert 无效 (服务器) 本地调试没有一点问题
$("#tt2").tree("loadData", data);//无效
}, 'json')
$.ajax({
url:path + "DataManager.ashx",
data:{ type: "getspotstree" },
dataType:'json',
success:function(data){
alert('请求成功')
$("#tt2").tree("loadData", data)
},
error:function(xhr){alert('ajax请求有问题!\n\n'+xhr.responseText);}
});