06 2023 档案
摘要:禁止选中 user-select: none; -webkit-user-select: none; -moz-user-select: none; 禁止元素拖拽 ondragstart="return false;"
阅读全文
摘要:function PaintText(x, y, color, size, text, toLeft) { if (toLeft == undefined) { toLeft = true; } y += size;ctx.font = "normal " + size+"px arial";ctx
阅读全文
摘要:CookieContainer cookieContainer = new CookieContainer();//创建CookieContainer Cookie cookie1 = new Cookie("pac_uid","0_8535fa0a41922","/","qq.com"); coo
阅读全文
摘要:var textarea=$("textarea[name=xxx]") //获取光标位置 var index = textarea.prop("selectionStart"); //设置光标位置 textarea.prop("selectionStart", index); textarea.p
阅读全文
摘要:window.onbeforeunload = function () { return true } 如果不需要给出提示的话,只需要不执行return true即可 需要注意的是,在chrome浏览器测试时发现,需要至少在网页中点击过一次才能正确触发此事件
阅读全文