求 带有链接的<button>代码
求有链接的butto代码,要在IE、firefox、chrome中都兼容,谢谢
------解决方案--------------------链接就是链接 按钮就是按钮
楼主 可以 让 链接的样式 看似一个按钮。
------解决方案--------------------按钮上有链接,你想点击时触发链接还是按钮事件?还是两者合并?
合并的话没必要了,按钮可以转跳url的。
------解决方案--------------------难道不会把a标签做成button的样子么?
CSS写一下很简单的。
------解决方案--------------------
<style type="text/css">
a {
background-color:#eee;
color:#999;
border-style:solid;
border-width:1px;
padding:5px;
border-top:none;
border-left:none;
text-decoration:none;
}
</style>
<a href="http://www.bbc.co.uk">www.bbc.co.uk</a>