首页 > 代码库 > 火狐下一点问题
火狐下一点问题
$(".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 = "http://www.mamicode.com/";
}
}
});
//alert("b");
//location.href = http://www.mamicode.com/hrefs;//加上这个,火狐不能执行$.ajax部分,哪部分代码引起 未发现
//if (hrefs.indexOf("MemberZone") > 0) {
// location.href = "http://www.mamicode.com/";
//}
})
火狐下一点问题