JSP中如何获取调用onmouseover函数方法的html对象?

发布于 2024-12-07 20:16:33 字数 336 浏览 0 评论 0原文

我写了一个html文件,里面有一些JSP。html标签有一个onmouseover监听器。当通过在标签的innerhtml上移动鼠标来调用mouseover方法时,如何获取当前的html标签对象?顺便说一句,“this”指针没有指向标签元素。

function dosth(){  
   //TODO: get the object who calls this method.
}
....
<mytag onmouseover="dosth()">innerHTML</mytag>

在上面的示例中,我如何获取 mytag 节点? mytag 不允许有 id。

I write a html file with some JSP in it.A html tag has a onmouseover listener.And when the mouseover method is called by moving mouse on the tag's innerhtml, how can I get the current html tag object? BTW,The "this" pointer is not pointing to the tag element.

function dosth(){  
   //TODO: get the object who calls this method.
}
....
<mytag onmouseover="dosth()">innerHTML</mytag>

In above example,how can i get the mytag node ? mytag is not allowed to have an id.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

一场春暖 2024-12-14 20:16:33

innerHTML

发送到 dosth 的第一个参数将是调用它的元素。

<mytag onmouseover="dosth(this);">innerHTML</mytag>

The first argument sent to dosth will be the element that called it.

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