我是靠谱客的博主 斯文月光,这篇文章主要介绍html按钮怎么设置超链接?html按钮超链接的四种实现方法,现在分享给大家,希望可以做个参考。

在html中,有时候为了好看与方便可能会需要设置按钮超链接,那么html按钮怎么设置超链接呢?接下来本篇文章我们就来看看html按钮超链接的四种实现方法,有需要的朋友可以参考一下。

html按钮设置超链接的方法一:使用超链接与button结合的方法

html按钮超链代码如下:

复制代码
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html> <html> <head> <title></title> </head> <body> <a href="http://www.uoften.com/"> <input type=button value="靠谱客" > </a> </body> </html>
登录后复制

html按钮超链接效果如下:

2345截图20181009115410.png

说明:<a> 标签的 href 属性用于指定超链接目标的URL。

html按钮设置超链接的方法二:使用链接和css样式设置将超链接设置成按钮的形状

html按钮超链接代码如下:

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!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.uoften.com" class="button">靠谱客</a> </body> </html>
登录后复制

html按钮设置超链接的方法三:使用 form表单来设置html按钮超链接

html按钮超链接代码如下:

复制代码
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html> <html> <head> <title></title> </head> <body> <form method="get" action="http://www.uoften.com/"> <button type="submit">靠谱客</button> </form> </body> </html>
登录后复制

html按钮设置超链接的方法四:使用window.location.href方法

完整的写法:

复制代码
1
2
3
<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('连接')">

以上就是本篇文章的全部内容了,更多其他精彩的内容大家可以关注靠谱客!!!

以上就是html按钮怎么设置超链接?html按钮超链接的四种实现方法的详细内容,更多请关注靠谱客其它相关文章!

最后

以上就是斯文月光最近收集整理的关于html按钮怎么设置超链接?html按钮超链接的四种实现方法的全部内容,更多相关html按钮怎么设置超链接?html按钮超链接内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(100)

评论列表共有 0 条评论

立即
投稿
返回
顶部