通过 qooxdoo 获取 mouseclick 下面的 html
是否有可能通过 qooxdoo 或纯 JS 获取鼠标点击下方的点击链接(-tag)?
在这里您可以看到问题:在 html 渲染的表格中,链接不起作用。 http://tinyurl.com/374gzwl
Is threre a possibility to get the clicked link ( -tag) below the mouseclick via qooxdoo or plain JS?
Here you can see the problem: within a html-rendered table the link does not work.
http://tinyurl.com/374gzwl
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您使用 qooxdoo 事件系统进行事件处理时,您可以使用传递事件(“qx.event.type.Mouse”)中的“getTarget”方法。
但是,当您添加本机事件处理程序时,您可以使用“qx.bom.Event”中的静态方法“getTarget”。
请查看 API Viewer [1] 了解详细信息。
[1] http://demo.qooxdoo.org/current/apiviewer/
When you have used the qooxdoo event system for event handling than you can use the "getTarget" method form the passed event ("qx.event.type.Mouse").
But when you are added a native event handler than you can use the static method "getTarget" from "qx.bom.Event".
Please have a look at the API Viewer [1] for the details.
[1] http://demo.qooxdoo.org/current/apiviewer/