2013-11-24 43 views
-2

我想在單擊Bootstrap 3.0表單上的按鈕時分配調用Jquery函數。Jquery不支持引導程序

簡單的jQuery的功能是:

<script> 
$(document).ready(function(){ 

    $("button").click(function(){ 

    alert("there"); 

    }); 
</script> 

代碼的按鈕:

<div class="form-group"> 
<div class="col-sm-offset-2 col-sm-10"> 
    <button type="submit" class="btn btn-default">Sign in</button> 
</div> 

我沒有得到這個警報彈出。

+1

你錯過了一個'});'?代碼應該沒問題 –

+0

是否動態創建按鈕 –

回答

0

你有失蹤})

jQuery(function ($) { 
    $("button").click(function() { 
     alert("there"); 
    }); 
}); 
+0

對不起,我錯過了最後一行}}在我的文章。它仍然不起作用。 –

1

也許你應該檢查你去哪裏放置你的腳本。代碼是好的,工作(加入});在腳本中,當然)。

1
<script type="text/javascript" src="../js/jquery-1.11.2.js"> 

$(document).ready(function(){ 

    $("button").click(function(){ 

    alert("there"); 

    }); 

}); 


</script>