如何从另一个函数触发 onmouseover?

发布于 2024-08-04 21:07:25 字数 76 浏览 1 评论 0原文

在一个函数中,与另一个项目无关,如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

才能让你更想念 2024-08-11 21:07:25

只需调用该元素的 onmouseover 函数:

document.getElementById("item").onmouseover()

document.getElementById("item") 引用该元素,elem.onmouseovermouseover 事件 并向其附加 () 将调用该函数。

Simply call the onmouseover function of that element:

document.getElementById("item").onmouseover()

document.getElementById("item") refers to the element, elem.onmouseover to the function for the mouseover event and appending () to it will call that function.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文