HTML标记:
<li tabindex='+len+' rel="popover" class="pop" data-placement="left"></li>
jQuery的:
$(".pop").popover({
title: 'To Load',
html: true,
content: function () {
$.get('templates/workInProcessDetail.html').success(function (data) {
return data;
});
}
});
请帮我解决它没有加载。
答案 0 :(得分:0)
您可以返回iframe
content: function () {
return '<iframe src="templates/workInProcessDetail.html" style="border:none"></iframe>';
}