Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<html>
<head>
<title>单击鼠标右键自动链接到指定网站</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<script>
function gosite(){
if(event.button==2){
alert('欢迎您');
window.open("/");
return false;
}
document.onmousedown=gosite;
</script>
<body>
在这里单击你的鼠标右键会弹出一个提示窗口并跳转到指定网站……
</body>
</html>
CSS代码...
JS代码...
xxxxxxxxxx