function $(id) {
return document.getElementById(id);
}
$('test').oncontextmenu=function() { return false; };
这样就可以给指定的元素自定义右键菜单
时间:2024-3-2 05:16 作者:韩俊 分类: Javascript
function $(id) {
return document.getElementById(id);
}
$('test').oncontextmenu=function() { return false; };
这样就可以给指定的元素自定义右键菜单
标签: javascript html css