当用户右键单击使用Rapahel.js创建的元素时,我需要做出响应。我读到你应该只附加一个click事件处理程序,然后决定用户点击哪个鼠标按钮。我无法让它发挥作用。
<!DOCTYPE html>
<html>
<head>
<script src="http://raphaeljs.com/raphael.js"></script>
<script>
window.onload = function() {
var r = Raphael('demo', 640, 480);
r.rect(10, 10, 400, 400).attr({fill: 'red'}).click(function(){
alert('test');
});;
};
</script>
</head>
<body>
<div id="demo"></div>
</body>
</html>
警告框仅在单击鼠标左键时显示。有关如何在单击右键时显示警告框的任何建议吗?
我用jQuery看过这个小技巧:
$(r.rect(10, 10, 400, 400).attr({fill: 'red'}).node).bind('contextmenu', function(){
alert('test');
});
但也请阅读此comment:
是的,这也有效,但只能使用jQuery,而且最好不要使用.node, 因为拉斐尔有时会重新创建节点 - 所以你会失去你的事件处理程序。
答案 0 :(得分:11)
您可以使用mousedown
并测试e.which
。这适用于FF和Chrome:
var r = Raphael('demo', 640, 480);
r.rect(10, 10, 400, 400).attr({fill: 'red'}).mousedown(function(e){
if (e.which == 3)
alert("hi")
});
对于跨浏览器解决方案,您可能还需要查看e.button
:
http://www.quirksmode.org/js/events_properties.html#button