Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
反正有没有让文本和/或形状成为超链接?当它们被点击时,它们会打开新的浏览器,当你将鼠标悬停在它们上面时,它们会显示 URL 的位置?
您不能让浏览器在状态栏中显示不是a标签的链接的 url。但是您确实可以在动态对象上添加一个点击处理程序并让它们充当链接。
a
text.on('click', function() { // do something });
http://jsfiddle.net/4JYGL/