我在网站上显示下一页时遇到问题。 我使用jQuery,并想在按Enter键时显示下一页? 我该怎么做。 下面的代码已经显示了我编写的内容。 有什么方法可以吗?
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script>
$(document).on("keypress", "input", function(e){
if(e.which == 13){
}
});
</script>
答案 0 :(得分:0)
您可以使用window.location重定向到另一个页面:
window.location = "http://www.google.com" // set your next page url instead of www.google.com
答案 1 :(得分:0)
window.location.replace("http://stackoverflow.com"); or
window.location.href = "http://stackoverflow.com"; or
window.open(url, '_blank');