06 2023 档案

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

点击右上角即可分享
微信分享提示