摘要:
var textarea=$("textarea[name=xxx]") //获取光标位置 var index = textarea.prop("selectionStart"); //设置光标位置 textarea.prop("selectionStart", index); textarea.p 阅读全文
摘要:
window.onbeforeunload = function () { return true } 如果不需要给出提示的话,只需要不执行return true即可 需要注意的是,在chrome浏览器测试时发现,需要至少在网页中点击过一次才能正确触发此事件 阅读全文