我试图想出一种通过链接脚本将大量 html 注入文档的方法,但我找不到一个好的方法。
像这样的东西会进入我“注入”到的文档的头部:
<script src="http://example.com/html-inject.js" type="text/javascript"></script>
然后这个家伙的内容会是这样的:
$(document).ready(function(){
$('body').insert({after: '<div id="test_div"><h1>This is a test.</h1></div>'});
$('header').insert({after: '<div id="test_div"><h1>This is another test.</h1></div>'});
})
(上面需要prototype.js,但我宁愿只链接到一个文件......)
我试图这样做的原因:我试图想出一个好方法来修改博客主题,而不会篡改错综复杂的变量和块