百分百源码网-让建站变得如此简单! 登录 注册 签到领金币!

主页 | 如何升级VIP | TAG标签

当前位置: 主页>网站教程>html5教程> html按钮怎么设定超链接?html按钮超链接的四种实现办法
分享文章到:

html按钮怎么设定超链接?html按钮超链接的四种实现办法

发布时间:09/01 来源:未知 浏览: 关键词:
在html中,有时候为了好看与利便大概会需要设定按钮超链接,那么html按钮如何设定超链接呢?接下来本篇文章我们就来看看html按钮超链接的四种实现办法,有需要的伴侣可以参照 一下。

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按钮超链接结果如下:

2345截图20181009115410.png

说明:<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按钮超链接的四种实现办法的具体内容,更多请关注百分百源码网其它相关文章!

打赏

打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,你说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

百分百源码网 建议打赏1~10元,土豪随意,感谢您的阅读!

共有150人阅读,期待你的评论!发表评论
昵称: 网址: 验证码: 点击我更换图片
最新评论

本文标签

广告赞助

能出一分力是一分吧!

订阅获得更多模板

本文标签

广告赞助

订阅获得更多模板