在html中,有時候為了好看與方便可能會需要設定按鈕超鏈接,那麼html按鈕怎麼設定超鏈接呢?接下來這篇文章我們就來看看html按鈕超連結的四種實作方法,有需要的朋友可以參考一下。
html按鈕設定超連結的方法一:使用超連結與button結合的方法
html按鈕超鏈接程式碼如下:
<!DOCTYPE html> <html> <head> <title></title> </head> <body> <a href="http://www.php.cn/"> <input type=button value="php中文网" > </a> </body> </html>
html按鈕超連結效果如下:
html按鈕設定超連結的方法二:使用連結和css樣式設定將超連結設定成按鈕的形狀
html按鈕超連結程式碼如下:
<!DOCTYPE html> <html> <head> <title></title> <style type="text/css"> a.button { -webkit-appearance: button; -moz-appearance: button; appearance: button; text-decoration: none; color: initial; } </style> </head> <body> <a href="http://www.php.cn" class="button">php中文网</a> </body> </html>
html按鈕設定超連結的方法三:使用form表單來設定html按鈕超連結
html按鈕超連結程式碼如下:
<!DOCTYPE html> <html> <head> <title></title> </head> <body> <form method="get" action="http://www.php.cn/"> <button type="submit">php中文网</button> </form> </body> </html>
html按鈕設定超連結的方法四:使用window.location.href方法
#完整的寫法:
<a href="链接"> <input type=button onclick="window.location.href('连接')"> </a>
說明:
1、若直接在本頁跳到新的頁面,則使用:
2、如果需要開啟一個新的頁面進行跳轉,則用:
以上就是本篇文章的全部內容了,更多其他精彩的內容大家可以關注PHP中文網! ! !
以上是html按鈕怎麼設定超連結? html按鈕超連結的四種實作方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!