How to click the button to jump to the page: First, use the onclick attribute to bind the click event in the button element, and stipulate that when the click event occurs, the myFunction() function will be executed; then in the myFunction() function, define "location .href="page address"" statement to jump.
The operating environment of this tutorial: windows7 system, javascript version 1.8.5, Dell G3 computer.
Javascript method of clicking a button to jump to the page:
Bind the click event in the button element
When a click event occurs, use the location.href statement to jump
Code example:
<p id="demo">点击按钮,进行页面跳转。</p> <button onclick="myFunction()">点击按钮</button> <script> function myFunction() { window.location.href='//m.sbmmt.com/'; } </script>
Rendering:
[Recommended learning: javascript advanced tutorial]
The above is the detailed content of How to use javascript to jump to a page by clicking a button. For more information, please follow other related articles on the PHP Chinese website!