0
A
回答
1
請你參考下面的代碼。
$("button#buttonAnswer1").on("click",hello);
請嘗試的jsfiddle上面的代碼,讓我知道你的顧慮。
1
你想選擇所有<button>
與數據線設置爲true
?
如果是這樣,試試這個:http://jsfiddle.net/M9pwp/2/
HTML:
<button id="buttonAnswer1" data-inline="true">Click me</button>
腳本:
$("button").click(function() {
if ($(this).attr('data-inline') == 'true')
hello();
});
function hello()
{
alert('hi');
}
如果你只是想爲這個特定的按鈕監聽器,則可以更改腳本到:
$("#buttonAnswer1").click(function() {
hello();
});
function hello()
{
alert('hi');
}
相關問題
- 1. 使用jQuery Mobile與cordova-qt
- 2. 與jQuery Mobile的
- 3. 使用jQuery Mobile 1.0.1與jQuery 1.7.2
- 4. 使用jQuery Mobile的
- 5. 使用jQuery Mobile的
- 6. 使用jQuery Mobile的
- 7. 與JQuery Mobile的URL
- 8. AngularJS與jQuery Mobile的
- 9. Angular.js與jQuery Mobile
- 10. OpenLayers與jQuery Mobile
- 11. 與jQuery Mobile的jQuery委託
- 12. 與jQuery Mobile和PhoneGap一起使用Photoswipe
- 13. jQuery Mobile不能與PhoneGap配合使用
- 14. JQuery Mobile與Knockout結合使用
- 15. jQuery vs jQuery Mobile與jQuery UI?
- 16. 如何使用jQuery Mobile的
- 17. 如何使用jQuery Mobile的
- 18. 什麼版本的jQuery與jQuery Mobile一起使用?
- 19. 禁用的按鈕與jQuery Mobile的
- 20. iScroll scrollToElement不與jQuery Mobile的
- 21. jQuery Mobile的對話與晶
- 22. videojs與jQuery Mobile的過渡
- 23. RequireJS不與jQuery Mobile的
- 24. window.location與jQuery Mobile的衝突
- 25. JQuery Mobile與MVC的鏈接
- 26. 不能與jQuery Mobile的
- 27. 與Marionette或Chaplin的jQuery Mobile?
- 28. 禁用jQuery Mobile的與淘汰賽
- 29. 使用Moovweb,jQuery mobile和Phonegap構建jQuery Mobile應用程序
- 30. 與jquery mobile衝突的jquery庫
您爲其他問題提供的代碼會將點擊處理程序綁定到任何元素類型,包括'