我需要使用href =""按钮的属性
像<button href="link">click me</button>
而不是<a href="link">
那是错的。
我认为我已尝试使用此代码
<button onClick="FN('MY Link For Example www.stackoverflow.com')" >click me</button>
<script>
function FN('URL'){
--> Go to MY Link For Example www.stackoverflow.com
}
<script>
那么你们有什么建议我应该做什么?
答案 0 :(得分:3)
试试这个。这将导航到点击链接。
<button onclick="window.location.href='http://www.stackoverflow.com'">click me</button>
答案 1 :(得分:3)
为什么不使用 $('body').on('click','.full_category_list>span',function(){
if ($(this).text()=='open list') {
var ul = $(this).parent().parent().find('ul');
$(ul).stop().css('max-height',$(ul).attr('data-fullheight'));
$(this).text('hide list');
} else {
var ul = $(this).parent().parent().find('ul');
$(ul).stop().css('max-height',$(ul).attr('data-height'));
$(this).text('open list');
}
或者如果你真的想要一个按钮,那么<a type="button" href=""></a>
答案 2 :(得分:2)
我认为这将解决您的问题
<a href="http://www.stackoverflow.com/">
<button>click me</button>
</a>
答案 3 :(得分:0)
href属性不能用于按钮标记,如果你想要一个标签的外观按钮你可以使用添加样式到你的标签并使它看起来像按钮,添加引导参考然后添加按钮类到你的锚标签。 Custom Bootstrap Button ,但如果您仍想使用按钮标记,则添加 onclick 事件是更好的选择