js load html页面,然后对元素调用js就不起作用了,直接把html代码放进去就可以
2 回答
LEATH
TA贡献1936条经验 获得超6个赞
header.html: 登出
index.html: $('.navbar-header').load('header.html');
然后在index.html中执行js:
$(".logout").bind("click", function () {
$.ajax({
type: 'POST',
url: 'user/logout',
data: JSON.stringify({"code": 111}),
dataType: "json",
contentType: "application/json",
success: function (data) {
window.location.href = "login.html"
}
});
});
logout没有用,没有发起请求
添加回答
举报
0/150
提交
取消