windows.location.href 不起作用

发布于 2024-10-14 05:59:45 字数 437 浏览 3 评论 0原文

我在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

暗藏城府 2024-10-21 05:59:45

它应该是window,而不是windows

window.location.href = ....

It should be window, not windows:

window.location.href = ....
笛声青案梦长安 2024-10-21 05:59:45

你应该能够只做 window.location = "....";

You should be able to just do window.location = "....";

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文