我有快捷键的代码,当我点击该键时,它会在新窗口中打开该URL,但我希望将当前页面重定向到该URL;网址应该在同一页面中打开。
<script type = "text/javascript">
$(document).keyup(function (e) {
var keyCode = e.keyCode ? e.keyCode : e.which
if (keyCode == 17&&81) {
window.open("urltest.html");
}
});
</script>
答案 0 :(得分:0)
要更改当前页面的网址,只需指定window.location
即可if (keyCode == 17&&81) {
window.location = "urltest.html";
}
答案 1 :(得分:0)
window.location对象可用于获取当前页面地址 (URL)并将浏览器重定向到新页面。
if (keyCode == 17&&81) {
window.location = "SomePage.html";
}
答案 2 :(得分:0)
将 window.open(“urltest.html”); 替换为 window.location =“urltest.html”;