分享
 
 
 

自定义 IE 鼠标右键弹出式

王朝html/css/js·作者佚名  2006-01-08
窄屏简体版  字體: |||超大  

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312">

<title>自定义鼠标右键弹出式菜单</title>

<style type="text/css">

<!--

.div1 { border-top:buttonface 1px solid;border-left:buttonface 1px solid;border-bottom:windowframe 1px solid;border-right:windowframe 1px solid;}

.div2 { border-top:window 1px solid;border-left:window 1px solid;border-bottom:buttonshadow 1px solid;border-right:buttonshadow 1px solid;}

.MouseOver {background-color:highlight;color:highlighttext;font-size: 12px;cursor:hand;font-size: 12px;}

.MouseOut {background-color:buttonface;color:buttontext;font-size: 12px;cursor:default;font-size: 12px;}

-->

</style>

<script language="javascript">

function PopupMouseRightButtonUpMenu()

{

if(MouseMenu.style.visibility=='visible') MouseMenu.style.visibility='hidden';

if (event.srcElement.tagName=='A' || event.srcElement.tagName=='TEXTAREA' || event.srcElement.tagName=='INPUT' || document.selection.type!='None')

return true;

else

{

if (event.clientX+150 > document.body.clientWidth) MouseMenu.style.left=event.clientX+document.body.scrollLeft-150;

else MouseMenu.style.left=event.clientX+document.body.scrollLeft;

if (event.clientY+DivH > document.body.clientHeight) MouseMenu.style.top=event.clientY+document.body.scrollTop-DivH;

else MouseMenu.style.top=event.clientY+document.body.scrollTop;

MouseMenu.style.visibility='visible';

}

return false;

}

function DrawMouseRightButtonUpMenu(){

DivH=2;

//oSelection = document.selection;

var HrStr='<tr><td align=\"center\" valign=\"middle\" height=\"2\"><TABLE border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"128\" height=\"2\"><tr><td height=\"1\" bgcolor=\"buttonshadow\"><\/td><\/tr><tr><td height=\"1\" bgcolor=\"buttonhighlight\"><\/td><\/tr><\/TABLE><\/td><\/tr>';

var MenuItemStr1='<tr><td align=\"center\" valign=\"middle\" height=\"20\"><TABLE border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"132\"><tr><td valign=\"middle\" height=\"16\" class=\"MouseOut\" onMouseOver=\"this.className=\'MouseOver\'\" onMouseOut=\"this.className=\'MouseOut\'\" onclick=\"'

var MenuItemStr2="<\/td><\/tr><\/TABLE><\/td><\/tr>";

var historyMenu=['window.history.back()\">后退','window.history.forward()\">前进'];

var SysMenu=['\">查找 <INPUT TYPE=\"text\" Size=\"10\" onkeypress=\"if (event.keyCode == 13) {MouseMenu.style.visibility=\'hidden\';var temp = this.value; this.value = \'\';return findInPage(temp)}\";\'>',

'document.execCommand(\'SelectAll\')\">全选',

'MouseMenu.style.visibility=\'hidden\';document.execCommand(\'SaveAs\',\'true\')\">另存为 ...',

'location.replace(\'view-source:\'+location.href)\">查看源文件',

'MouseMenu.style.visibility=\'hidden\';window.print()\">打印',

'window.location.reload()\">刷新'];

var MenuStr='';

for(i=0;i<historyMenu.length;i++)

{

MenuStr+=MenuItemStr1+historyMenu[i]+MenuItemStr2;

DivH+=20;

}

MenuStr+=HrStr;

for(i=0;i<arguments.length;i++)

{

MenuStr+=MenuItemStr1+arguments[i]+MenuItemStr2;

DivH+=20;

}

if(arguments.length>0)

{

MenuStr+=HrStr;

DivH+=2;

}

for(i=0;i<SysMenu.length;i++)

{

MenuStr+=MenuItemStr1+SysMenu[i]+MenuItemStr2;

DivH+=20;

}

var aboutMenu=['MouseMenu.style.visibility=\'hidden\';alert(\'http:\/\/www.playyuer.com\\nmailto:playyuer@263.net\')">关于 ...']

MenuStr+=HrStr;

for(i=0;i<aboutMenu.length;i++)

{

MenuStr+=MenuItemStr1+aboutMenu[i]+MenuItemStr2;

DivH+=20;

}

var MenuTop = '<DIV id=\"MouseMenu\" class=\"div1\" style=\"position:absolute; left:0px; top:0px; width=150;height='+DivH+'; z-index:1; visibility:hidden;\">\n' +

'<TABLE border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"div2\">\n' +

'<tr>\n' +

'<td bgcolor=\"' + MenuBarColor+ '\" width=\"50\" valign=\"bottom\" align=\"center\" bgcolor=\"buttonface\">\n' +

'<\/td>\n'+

'<td bgcolor=\"buttonface\">\n'+

'<TABLE border=\"0\" cellpadding=\"0\" cellspacing=\"0\">';

var MenuBottom = '<\/TABLE><\/td><\/tr><\/TABLE><\/DIV>';

document.write(MenuTop+MenuStr+MenuBottom);

//prompt('aa',MenuTop+MenuStr+MenuBottom)

document.body.oncontextmenu=new Function('return PopupMouseRightButtonUpMenu();');

document.body.onclick=new Function('if(event.srcElement.tagName !=\'INPUT\') MouseMenu.style.visibility=\'hidden\'');

document.body.onscroll=new Function('MouseMenu.style.visibility=\'hidden\';');

document.body.onselectstart=new Function('MouseMenu.style.visibility=\'hidden\';');

window.onresizestart=new Function('MouseMenu.style.visibility=\'hidden\';');

}

var NS4 = (document.layers);

var IE4 = (document.all);

var win = window;

var n = 0;

function findInPage(str) {

var txt, i, found;

if (str == '')

return false;

if (NS4) {

if (!win.find(str))

while(win.find(str, false, true))

n++;

else

n++;

if (n == 0)

alert('文档搜索完毕。');

}

if (IE4) {

txt = win.document.body.createTextRange();

for (i = 0; i <= n && (found = txt.findText(str)) != false; i++) {

txt.moveStart('character', 1);

txt.moveEnd('textedit');

}

if (found) {

txt.moveStart('character', -1);

txt.findText(str);

txt.select();

txt.scrollIntoView();

n++;

}

else {

if (n > 0) {

n = 0;

findInPage(str);

}

else

alert('文档搜索完毕。');

}

}

return false;

}

</script>

</head>

<body>

自定义鼠标右键弹出式菜单

<SCRIPT LANGUAGE="JavaScript">

<!--

var MenuBarColor ='#6600FF';

DrawMouseRightButtonUpMenu();

//-->

</SCRIPT>

</body>

</html>

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有