2016-03-05 80 views
0

有人可以解釋爲什麼我的鏈接不起作用嗎?引導按鈕href不起作用

<!-- Optional theme this one is ok --> 
 
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous">
<button type="button" class="btn btn-primary" href="#">Get your Free Quote now!</button>

回答

3

聯JavaScript:

<button onclick="window.location='http://www.example.com';">Visit Page Now</button> 

在Javascript定義一個函數:

<script> function visitPage(){ window.location='http://www.example.com'; } </script> <button onclick="visitPage();">Visit Page Now</button> 

或jQuery的

<button id="some_id">Visit Page Now</button> $('#some_id').click(function() { window.location='http://www.example.com'; }); 

在引導,

<button type="button" class="btn btn-primary" onclick="window.location='http://www.example.com';">Get your Free Quote now!</button> 
1

你可以做到以下幾點:它的工作原理。

<a href="#"><button type="button" class="btn btn-primary">Get your Free Quote now!</button></a> 

該按鈕的設計風格保持不變。