来自 XML 节点的 onclick 事件
我的文档是 XML 和 HTML 标签的混合体,其中 HTML 标签是从 xhtml 命名空间中提取的,而我的文档是从各种命名空间中提取的。 我想从文档的 XML 节点获取用户交互事件。 我第一次尝试
但没有运气。但是
有效。 那么有没有任何解决方案/技巧/黑客/后门可以从我的 XML 节点获取事件?
My documents are a mixture of XML and HTML tags, where HTML tags are pulled from xhtml namespace and mine are from various namspaces.
I want to take user interaction events from XML Nodes of my document.
I first tried <do:landingTime xhtml:onclick="fnc">20:48:29.45</do:landingTime>
with no Luck. But <xhtml:span onclick="fnc">
works.
So is there any solution/tricks/hacks/backdoor to take events from my XML Nodes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用 Javascript 添加点击事件并接受问题的答案。
You need to add the click events using Javascript and accept answers to your questions.