如果我用按鈕創建一個內聯模式...我希望能夠在點擊每個按鈕時執行特定操作。但是,我無法抓住模式中生成的這些按鈕。Magnific popup - 如何引用模態內的按鈕?
有誰知道我該如何抓住這些?
$('.open-popup-link').magnificPopup({
items: {
type: 'inline',
src: $('<div class="white-popup">\
<h4>Are you sure you were discharged for failing a drugs test?</h4>\
<p>You will not be able to change your answer once you have submitted these details.</p>\
<button id="test-popup-no">No, I\'ve made a mistake</button>\
<button id="test-popup-yes">Yes, I\'m sure</button>\
</div>')
},
type: 'inline',
midClick: true
});
我想執行不同的操作時,每個按鈕被點擊取決於它的ID。
如果可以,請幫助。我一直在爲此而苦苦掙扎。只是做一個標準的jQuery選擇似乎沒有工作。
謝謝, 邁克爾。
謝謝,這似乎工作得很好。輝煌! –