如何从另一个函数触发 onmouseover?
在一个函数中,与另一个项目无关,如何在 id 为“item”的 div 上触发 javascript 中的 onmouseover 事件?
In one function, having nothing to do with another item, how can I trigger an onmouseover event in javascript on a div with id 'item'?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需调用该元素的
onmouseover
函数:document.getElementById("item")
引用该元素,elem
.onmouseover
到 mouseover 事件 并向其附加()
将调用该函数。Simply call the
onmouseover
function of that element:document.getElementById("item")
refers to the element,elem
.onmouseover
to the function for the mouseover event and appending()
to it will call that function.