1
我在打開bootbox模式的索引文件上使用了一個函數。這個想法是在這個模式窗口中放置一個litte聯繫表單。該功能是否正常工作和bootbox模式被打開,下面我的代碼:Bootbox元素選擇
jQuery的
$('#form').click(function(){
$.get("modal.php", function(data,status){
bootbox.dialog({
message: data,
title: "CONTACT US",
});
});
});
問題是,我不能選擇該模式窗口內的任何元件,例如我有這個modal.php文件內的按鈕
的Html
<button id="cancelbutton" type="button" class="btn btn-danger">Cancelar</button>
如果我嘗試附加一個事件到這個按鈕沒有任何反應。我在這裏做錯了什麼?
這對按鈕事件
$('#cancelbutton').on('click',function() {
alert('Testing');
console.log('Testing');
});
代碼我可以通過CSS雖然定向此元件:
#cancelbutton{background:#000;}
將jquery事件附加到modal.php中的'canclebutton'。 – Manwal
'modal.php'中是否有Javascript? – TribalChief
請粘貼代碼cancelbutton點擊事件。 – Shail