1
我想提醒一條消息,當點擊編號爲tagit
的按鈕時。但是整個表格都出現在bootstrap popover中。我還添加了jquery警報消息,但它沒有顯示任何警告對話框,但是當我在JavaScript中調用相同的東西時,它顯示警報。但我需要它在jQuery中。我怎樣才能做到這一點?jQuery的點擊功能不工作的彈出式按鈕裏面
var htmlcont ='<table class="pop-table"><tr><td><button class="btn btn-warning" id="tagit">FILTER</button></td></tr></table>';
$('[data-toggle="popover"]').popover({content: htmlcont, html: true});
$("#tagit").click(function(){
alert("hello this is working");
});
使用代表團 –