windows.location.href不起作用

时间:2011-01-25 20:03:08

标签: javascript search input location-href

我对javascript有点麻烦。

这是搜索框:

<input id="lala" onkeypress="lala(event)" />

这是剧本:

<script type="text/javascript">
function lala(e){
    tecla = (document.all) ? e.keyCode : e.which;
    if(tecla==13) windows.location.href = 'http://server:100/Theme/resumenInstrumento.aspx?nemo=lan';
} 
</script>

什么时候进行javascript提醒,看起来效果很好,但我不能去网址。

2 个答案:

答案 0 :(得分:7)

应该是window,而不是windows

window.location.href = ....

答案 1 :(得分:2)

你应该可以只做window.location =“....”;