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 或 jquery 来控制浏览器 url 部分中的 stop(esc) 的问题。这是因为有些数据非常大,所以要等待很长时间。如果用户不想等待,他可以单击 url 中的 stop(esc)(之前是“刷新”)。用户单击停止按钮“X”然后 html 页面将执行一些事件。你能告诉我如何操纵吗?它有我可以直接使用的 API 吗?非常感谢!
var code = (e.keyCode ? e.keyCode : e.which); if(code == 13) { //Enter keycode //Do something }