从外部源加载html

时间:2016-01-23 21:11:07

标签: javascript html html-injections

我希望在多个页面中包含一个剪切的HTML(每个页面都有不同的开发工作流程和框架)。为了避免在剪切更改时更新每个页面,每个页面都会加载一个当前看起来像这样的Javascript文件

var html = "lots of html with <style> and <script> tags";
var wrapper = document.createElement("div");
wrapper.innerHTML = html;
document.querySelector('body').appendChild(wrapper);

我正在寻找更好的解决方案,使用Javascript从其他来源注入HTML内容。

1 个答案:

答案 0 :(得分:1)

试试这个:

<html>
    <head>
        <script type="text/javascript" src="http://code.jquery.com/jquery-1.5.1.min.js"></script>
        <script type="text/javascript">
           $(document).ready(function(){
               $('#selectedTarget').load('path/to/file.html');
           });
        </script>   
    </head>
    <body>
        <div id="selectedTarget">
            Existing content.
        </div>
    </body>
</html>