html按钮怎么设定超链接?html按钮超链接的四种实现办法
发布时间:09/01 来源:未知 浏览:
关键词:
html按钮设定超链接的办法一:使用超链接与button结合的办法
html按钮超链接代码如下:
<!DOCTYPE html> <html> <head> <title></title> </head> <body> <a href="http://www.php.cn/"> <input type=button value="百分百源码网" > </a> </body> </html>
html按钮超链接结果如下:
说明:<a> 标签的 href 属性用于指定超链接目标的URL。
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">百分百源码网</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">百分百源码网</button> </form> </body> </html>
html按钮设定超链接的办法四:使用window.location.href办法
完全的写法:
<a href="链接"> <input type=button onclick="window.location.href('连接')"> </a>
说明:
1、若直接在本页跳转到新的页面,则用: <input type=button onclick="window.location.href('连接')">
2、假如需要翻开一个新的页面停止跳转,则用: <input type=button onclick="window.open('连接')">
以上就是本篇文章的全部内容了,更多其他出色的内容大家可以关注PHP中文网!!!
以上就是html按钮如何设定超链接?html按钮超链接的四种实现办法的具体内容,更多请关注百分百源码网其它相关文章!