我对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提醒,看起来效果很好,但我不能去网址。
答案 0 :(得分:7)
应该是window
,而不是windows
:
window.location.href = ....
答案 1 :(得分:2)
你应该可以只做window.location =“....”;