Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须调用 ajax 函数来在浏览器关闭事件中重置数据库中的标志。
我这样做是为了防止多次登录,因为我在登录事件中设置了标志,但我必须在浏览器关闭事件中重置它,所以我必须通过 ajax 函数来完成,但我是新手,所以请指导我调用ajax函数。
我已经裁判了que
这是您可以向服务器发出 ajax 请求以重置数据库标志的方式。
$.ajax({ url: your url, type: "POST", data: { Flag: value }, error: function () { alert("Unexpected Error"); }, success: function (data) { } });