本文介绍了是oncontextmenu的交叉浏览器?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

window.oncontextmenu = function() {
    return false;
};

这是否适用于所有主流浏览器,不会启动右键?

Will this work on all major browsers such that the right click will not be initiated?

推荐答案

请参阅查看详细的兼容性表。

See this quirksmode page for a detailed compatibility table.

这篇关于是oncontextmenu的交叉浏览器?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-18 22:52