我们目前正在将内容加载到iframe
Twitter Bootstrap 模式框中。但是,样式没有被执行,因为我们使用 Joomla 的仅内容后缀加载内容:?tmpl=component
.
<?php echo '…
$("a[data-toggle=\'"+$modalText+"\']").on(\'click\', function (e) {
// Call the modal manually
var url = $(this).attr(\'href\');
$modal.find(".modal-body-content").html(\'<iframe frameborder="0" width="100%" height="700" allowtransparency="true" src="\' + url + \'"></iframe >\');
$modal.modal("show");
});
…';?>
原因是内容包含一个表单和提交按钮。.load()
如果我们通过 jQuery 的函数加载内容,有没有办法将内容保留在模态框内并在模态框内提交?
感谢您的任何建议。