禁止浏览器页面的上下文菜单后,如何使用 JavaScript 再次显示它?
例如,我有下面的代码:
document.addEventListener('contextmenu', function (e) {
e.preventDefault();
// Running some codes here...
// Now I wanna display the context menu. How can I do?
}, true;
禁止浏览器页面的上下文菜单后,如何使用 JavaScript 再次显示它?
谢谢你!
For example, I've codes below:
document.addEventListener('contextmenu', function (e) {
e.preventDefault();
// Running some codes here...
// Now I wanna display the context menu. How can I do?
}, true;
After disallow browser page's context menu, how to display it again using JavaScript?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
return true;
将执行相反的操作。例如:
检查工作示例 http://jsfiddle.net/TXVt6/1/
return true;
will do the opposite.Ex:
Check working example at http://jsfiddle.net/TXVt6/1/
e.preventDefault
阻止菜单发生。如果您想要默认操作(即弹出菜单),请跳过此调用。e.preventDefault
prevents the menu from happening. Just skip this call if you want the default action (which is to pop up the menu).