将HTML文件加载到popover中

时间:2014-04-02 12:45:59

标签: jquery html twitter-bootstrap

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;
        });
    }
});

请帮我解决它没有加载。

1 个答案:

答案 0 :(得分:0)

您可以返回iframe

content: function () {
        return '<iframe src="templates/workInProcessDetail.html" style="border:none"></iframe>';
    }