js怎么切換鼠標(biāo)右鍵事件
學(xué)習(xí)前端的同學(xué)你們知道js怎么切換鼠標(biāo)右鍵事件嗎?不知道的話(huà)跟著學(xué)習(xí)啦小編一起來(lái)學(xué)習(xí)了解切換鼠標(biāo)右鍵事件的方法吧。
js 切換鼠標(biāo)右鍵事件的方法
<%--
/**
*實(shí)現(xiàn)右鍵菜單功能
*/
--%>
<html>
<body oncontextmenu = showMenu('')>
<form name = "menuForm">
<!--隱藏框,用來(lái)保存選擇的菜單的id值-->
<input type = "hidden" name = "id" value = "">
<table>
<tr><td><a href="javascript:clickMenu()" oncontextmenu = showMenu('0')>根目錄</a></td></tr>
<tr><td><a href="javascript:clickMenu()" oncontextmenu = showMenu('1')>菜單一</a></td></tr>
<tr><td><a href="javascript:clickMenu()" oncontextmenu = showMenu('2')>菜單二</a></td></tr>
</table>
</form>
</body>
<!-- 這里用來(lái)定義需要顯示的右鍵菜單 -->
<div id="itemMenu" style="display:none">
<table border="1" width="100%" height="100%" bgcolor="#cccccc" style="border:thin" cellspacing="0">
<tr>
<td style="cursor:default;border:outset 1;" align="center" onclick="parent.create()">
新增
</td>
</tr>
<tr>
<td style="cursor:default;border:outset 1;" align="center" onclick="parent.update();">
修改
</td>
</tr>
<tr>
<td style="cursor:default;border:outset 1;" align="center" onclick="parent.del()">
刪除
</td>
</tr>
</table>
</div>
<!-- 右鍵菜單結(jié)束-->
</html>
<script language="JavaScript">
/**
*根據(jù)傳入的id顯示右鍵菜單
*/
function showMenu(id)
{
menuForm.id.value = id;
if("" == id)
{
popMenu(itemMenu,100,"100");
}
else
{
popMenu(itemMenu,100,"111");
}
event.returnValue=false;
event.cancelBubble=true;
return false;
}
/**
*顯示彈出菜單
*menuDiv:右鍵菜單的內(nèi)容
*width:行顯示的寬度
*rowControlString:行控制字符串,0表示不顯示,1表示顯示,如“101”,則表示第1、3行顯示,第2行不顯示
*/
function popMenu(menuDiv,width,rowControlString)
{
//創(chuàng)建彈出菜單
var pop=window.createPopup();
//設(shè)置彈出菜單的內(nèi)容
pop.document.body.innerHTML=menuDiv.innerHTML;
var rowObjs=pop.document.body.all[0].rows;
//獲得彈出菜單的行數(shù)
var rowCount=rowObjs.length;
//循環(huán)設(shè)置每行的屬性
for(var i=0;i<rowObjs.length;i++)
{
//如果設(shè)置該行不顯示,則行數(shù)減一
var hide=rowControlString.charAt(i)!='1';
if(hide){
rowCount--;
}
//設(shè)置是否顯示該行
rowObjs[i].style.display=(hide)?"none":"";
//設(shè)置鼠標(biāo)滑入該行時(shí)的效果
rowObjs[i].cells[0].onmouseover=function()
{
this.style.background="#818181";
this.style.color="white";
}
//設(shè)置鼠標(biāo)滑出該行時(shí)的效果
rowObjs[i].cells[0].onmouseout=function(){
this.style.background="#cccccc";
this.style.color="black";
}
}
//屏蔽菜單的菜單
pop.document.oncontextmenu=function()
{
return false;
}
//選擇右鍵菜單的一項(xiàng)后,菜單隱藏
pop.document.onclick=function()
{
pop.hide();
}
//顯示菜單
pop.show(event.clientX-1,event.clientY,width,rowCount*25,document.body);
return true;
}
function create()
{
alert("create" + menuForm.id.value + "!");
}
function update()
{
alert("update" + menuForm.id.value + "!");
}
function del()
{
alert("delete" + menuForm.id.value + "!");
}
function clickMenu()
{
alert("you click a menu!");
}
</script>
js 切換鼠標(biāo)右鍵事件的方法相關(guān)文章:
2.怎么用JS實(shí)現(xiàn)鼠標(biāo)單擊與雙擊事件共存