做网页时,怎样做到当用户打开网页时,右击--->属性,但看不到页面的名称.如(question.aspx)是看不到的.只是看到(http://域名/)

解决方案 »

  1.   

    <!--禁右-->
    <script language=javascript>
    <!--
    if (window.Event)
    document.captureEvents(Event.MOUSEUP);
    function nocontextmenu(){
    event.cancelBubble = true
    event.returnValue = false;
    return false;

    function norightclick(e){
    if (window.Event){
    if (e.which == 2 || e.which == 3)
    return false;
    }
    else
    if (event.button == 2 || event.button == 3){
    event.cancelBubble = true
    event.returnValue = false;
    return false;
    }

    document.oncontextmenu = nocontextmenu; // for IE5+
    document.onmousedown = norightclick; // for all others
    //-->
    </script>