我有一个带有 bootstrap 和 BootstrapDialog 的 html 页面。
在那个页面中,我有一个像这样的 div:
<div id="divtoload" style="display:none">Test</div>
我想将此加载到 BootstrapDialog 中。
我尝试使用
BootstrapDialog.show({
message: $('<div></div>').load('index.html #divtoload')
});
但它不起作用,因为它是“显示:无”。