Javascript默认事件预防不起作用

时间:2012-04-15 23:50:54

标签: javascript javascript-events preventdefault

当用户的浏览器启用了javascript时,我正在尝试将“我的个人资料”菜单链接重定向到自定义网址。我已经编写了一个自定义URL来创建动态函数getNewURL(),并且连接工作正常。问题是,即使启用了javascript(在我的Chrome上),href中的默认页面也会加载,尽管所有默认的防护代码都是如此。我一直在花这些时间,但无法弄清问题是什么。任何帮助将不胜感激。

<head>
<script type="text/javascript">
<!--
function init() {
    document.getElementById('profile').onclick=getNewURL;
}

window.onload=function(){
init();
}



function getNewURL(e)
{
    if(!e) e = window.event;
    var a = 'http://www.google.com/'; 
    var b = 'advanced_search?hl=en';//this will actually be a dynamic wikispaces
             //variable - the username. 
    var url = a+b;

    window.location.href = url;

    //Over-riding default action
    //e.cancelBubble is supported by IE
    e.cancelBubble = true;
    e.returnValue = false;

    //e.stopPropagation works only in Firefox.
    if (e.stopPropagation) {
        e.stopPropagation();

    }
    e.preventDefault();
    return false;
}
//-->
</script>
</head>

<body>
<div id="menu">
<ul>
    <li><a href="http://www.google.com/" id="profile">My Profile</a></li>
</ul>
</div>
</body>        

2 个答案:

答案 0 :(得分:3)

好像你忘了将参数添加到功能定义

function getNewURL(e) ...

答案 1 :(得分:0)

什么是e?

function getNewURL()
{
    if(!e) var e = window.event;  <--

应该是

function getNewURL(e)
{
    if(!e) e = window.event;