ymck-16 击右键转换到别的页面:
<script language="JavaScript">
if (navigator.appName.indexOf("Internet Explorer") != -1)
document.onmousedown = noSourceExplorer;
function noSourceExplorer()
{
if (event.button == 2 | event.button == 3)
{
alert("输入击右键显示的信息");
location.replace("http://转向网址");
}
}
</script>