【Jquery特效10】鼠标右键菜单jQuery代码
$(document).ready(function() {
$(document).contextmenu(function(e) {
e.preventDefault();
$('.custom-menu').css({
top: e.pageY + 'px',
left: e.pageX + 'px'
}).toggle();
});
$('.custom-menu li').click(function() {
alert('你点击了菜单项 ' + $(this).text());
$('.custom-menu').hide();
});
$(document).click(function() {
$('.custom-menu').hide();
});
});
48.19KB
文件大小:
评论区