码迷,mamicode.com
首页 > 其他好文 > 详细

火狐下一点问题

时间:2014-10-15 15:30:30      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:io   os   ar   sp   on   问题   cti   log   代码   

$(".li_logout_a").click(function (e) {
var hrefs = location.href;
e.preventDefault();
$("#lnk_username span").text("");
$("#li_login,#li_regist").show().prev().show();
$("#li_logout").hide().prev().hide();
//$.post("/ashx/Adminlogo.ashx", { act: "logout" }, function (data) {
// alert(data);
//});
$.ajax({
url: ‘/ashx/Adminlogo.ashx‘,
type: ‘post‘,
data: { act: "logout" },
success: function (d) {
if (d=="1") {
location.href = "/";
}
}
});
//alert("b");
//location.href = hrefs;//加上这个,火狐不能执行$.ajax部分,哪部分代码引起  未发现
//if (hrefs.indexOf("MemberZone") > 0) {
// location.href = "/";
//}
})

火狐下一点问题

标签:io   os   ar   sp   on   问题   cti   log   代码   

原文地址:http://www.cnblogs.com/juexin/p/4026013.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!