0

我试图想出一种通过链接脚本将大量 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,但我宁愿只链接到一个文件......)

我试图这样做的原因:我试图想出一个好方法来修改博客主题,而不会篡改错综复杂的变量和块

4

1 回答 1

0

使用 jQuery(这是相当标准的这些天),您可以执行以下操作:

$('#div').append('<h1>SomeHtml</h1>');

但是,就像其他人所说的那样,你最好学习你的博客主题并正确地做到这一点。

于 2012-10-31T16:03:27.410 回答