windows.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 警报时,它看起来很好,但我无法转到 URL。
I have a little trouble with javascript.
This is the search box :
<input id="lala" onkeypress="lala(event)" />
This is the script :
<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>
When do a javascript alert, it appears well, but I cant go to URL.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它应该是
window
,而不是windows
:It should be
window
, notwindows
:你应该能够只做 window.location = "....";
You should be able to just do window.location = "....";