方法:1、使用onclick事件,在標籤內加上「onclick="window.location.href=位址"」即可;2、在button標籤外套一個a標籤,在a標籤中用href屬性添加跳轉代碼。
本教學操作環境:windows7系統、CSS3&&HTML5版、Dell G3電腦。
方法1:使用onclick事件
<input type="button" value="按钮" onclick="javascrtpt:window.location.href='http://www.baidu.com/'" />
或直接使用button標籤
<button onclick="window.location.href = 'https://www.baidu.com/'">百度</button>
方法2:在button標籤外套一個a標籤
<a href="http://www.baidu.com/"> <button>百度</button> </a>
或使用
<a href="http://www.baidu.com/"> <input type="button" value="百度" /> </a>
方法3:使用JavaScript函數
<script> function jump() { window.location.href = "http://www.baidu.com/"; } </script> <input type="button" value="百度" onclick="javascrtpt:jump()" /> <!-- 或者<input type="button" value="百度" onclick="jump()" /> --> <!-- 或者<button onclick="jump()">百度</button> -->
推薦學習:html影片教學
#以上是HTML如何實現點擊button頁面跳轉的詳細內容。更多資訊請關注PHP中文網其他相關文章!