html按钮设置超链接的方法一:使用超链接与button结合的方法
html按钮超链接代码如下:
!DOCTYPE html html head title /title /head body a href= http://www.VeVb.com/ input type=button value= php /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.VeVb.com >html按钮设置超链接的方法三:使用 form表单来设置html按钮超链接
html按钮超链接代码如下:
!DOCTYPE html html head title /title /head body form method= get action= http://www.VeVb.com/ button type= submit php /button /form /body /htmlhtml按钮设置超链接的方法四:使用window.location.href方法
完整的写法:
a href= 链接 input type=button quot;window.location.href( 连接 ) /a说明:
1、若直接在本页跳转到新的页面,则用: input type=button quot;window.location.href( 连接 )
2、如果需要打开一个新的页面进行跳转,则用: input type=button quot;window.open( 连接 )以上就是本篇文章的全部内容了,更多其他精彩的内容大家可以关注PHP !!!
以上就是html按钮怎么设置超链接?html按钮超链接的四种实现方法的详细内容,html教程
郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。
新闻热点
疑难解答