日期:2014-05-16 浏览次数:20326 次
function GoToOAuth(oid) {
$.ajax({
type: "POST",
url: ajaxPath + "GoToOAuth",
data: { oid: oid },
beforeSend: function () {
ShowMsg(true, 1, "正在通讯...");
},
error: function (state) {
ShowMsg(true, 2, "请求异常...");
return false;
},
success: function (res) {
if (res.indexOf("http") == -1) {
ShowMsg(true, 2, "操作失败...");
return false;
}
else {
ShowMsg(false, 1, "正在通讯...");
window.location.href = "http://"+res; 问题在这里 问题在这里
return false ;
}
},
complete: function () {
}
});
}