文件名称:如何判断鼠标是否在DIV的区域内
文件大小:31KB
文件格式:PDF
更新时间:2024-02-09 11:05:02
div var var方法
今天研究了一下这个问题,也普及了一下知识吧。 方法一: 通过mouseover,mouseout来触发事件,才判断鼠标是否在该区域。 但是这种方法的局限性就是,必须要触发mouseover,或mouseout,mouseleave事件才能知道。 代码如下:function chkIn() { div_1.innerText = “现在你把鼠标移入层了!”; div_1.style.font = “normal black”; } function chkOut() { div_1.innerText = “现在你把鼠标移出层了!”; div_1.style.font =