是否可以在iframe中禁用鼠标中键点击
<iframe id="ck_id"></iframe>
我已使用以下方法禁用了上下文菜单:
document.getElementById("ck_id").contentWindow.document.oncontextmenu = function(){alert("Disabled context menu"); return false;};
答案 0 :(得分:0)
使用jquery&#39; mousedown&#39;:
$(document).ready(function () {
$("#ck_id").contents().find("body").on('mousedown', function (e) {
if (e.which == 2) {
e.preventDefault();
//Do your work
}
});
});