从 jQuery 中的事件属性中提取文本
我有一个带有 onmouseover 属性的锚点。该事件属性调用另一个函数,如下所示:
<a onmouseover="showHint('<h3>some HTML</h3>', this, event)"></a>
到达对象后,是否可以从属性/函数中提取 HTML?当我使用 attr() 时,它返回该函数 - 但我想获取字符串文字。
提前致谢。
I have an anchor with the onmouseover attribute. This event attribute calls another function as so:
<a onmouseover="showHint('<h3>some HTML</h3>', this, event)"></a>
After getting to the object, is there anyway to pull the HTML from the attribute/function? When I use attr(), it returns the function - but I'd like to grab the string literal.
Thanks in Advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜你正在寻找这样的东西?
I guess you're looking for something like this?