我正在学习" Avgrund Modal plugin"我想知道如何用javascript包含HTML / PHP文件的内容。
当我创建模态窗口时,我使用以下代码:
<script>
$(function() {
$('#show').avgrund({
height: 200,
holderClass: 'custom',
showClose: true,
showCloseText: 'Stäng',
onBlurContainer: '.container',
template: "Helloooo"
});
});
</script>
模板中的值是模态窗口的内容。 这是它在doc
中的描述template: 'String content..' // or function (elem) { }, or $('.content')
如何在打开窗口时包含完整的php / html文件?
提前致谢。