摘要: //实时显示鼠标在页面中的位置 var inp = document.querySelector("div"); document.addEventListener("mousemove", function (e) { inp.style.position = "absolute"; inp.st 阅读全文
posted @ 2021-07-25 21:54 贾正直 阅读(127) 评论(0) 推荐(0)
摘要: // 阻止右键出现菜单 document.addEventListener("contextmenu", function (e) { e.preventDefault(); }) // 阻止文字被选中 document.addEventListener("selectstart", functio 阅读全文
posted @ 2021-07-25 21:28 贾正直 阅读(33) 评论(0) 推荐(0)
摘要: function two(e) { alert("two"); console.log(e); 阻止默认行为 e.preventDefault(); 阻止向上冒泡 e.stopPropagation() } var div2 = document.querySelector("a"); div2.a 阅读全文
posted @ 2021-07-25 21:04 贾正直 阅读(25) 评论(0) 推荐(0)