Raphael.js,如何选择元素?
在 Raphael,js 中,如何选择元素?例如,如果我有一个矩形,如何选择它?在Raphael中,有没有办法像使用jQuery选择DOM元素一样选择元素?
In Raphael,js, how can I select an element? For example, If I have an rectangular, how to select it? In Raphael, is there any way to select element like the selection of DOM element using jQuery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要选择一个 svg DOM 元素,假设 raphael 元素的节点有一个 ID,您可以通过
$('#ID')
在 'jQuery' 模式下完成,或者以 'native' 方式完成document.getElementById('ID')
。而且,使用raphael处理事件非常简单,例如当你点击一个矩形时你可以“选择”它,这样(演示在这里=> http://jsfiddle.net/steweb/zMYU8/):
标记:
js:
To select an svg DOM element, supposing a node of the raphael element has an ID, you can do it in the 'jQuery' mode by
$('#ID')
or in the 'native' waydocument.getElementById('ID')
.Moreover, using raphael handling events is very simple, for example when you click on a rectangle you can 'select' it, in this way (demo here => http://jsfiddle.net/steweb/zMYU8/):
markup:
js: