如何运行模态并从动态创建元素构建模态。
例如,我有一个按钮,我想启动模态,它是动态创建的。
我正在使用这个模态插件: http: //labs.voronianski.com/jquery.avgrund.js/
我已经尝试过了,它确实有效,尽管在第二次单击按钮之前它不起作用。
$('body').on('click','#siteSwitch', function(){
$(this).boxModal({
height: 800,
width: 800,
holderClass: 'boxModal',
showClose: true,
showCloseText: 'X',
enableStackAnimation: false,
template: '<p>So implement your design and place content here! If you want to close modal, please hit "Esc", click somewhere on the screen or use special button.</p>'
});
});
谢谢