Questions tagged «javascript-injection»

9
页面加载后如何通过jQuery动态插入<script>标签?
我在使它工作时遇到问题。我首先尝试将脚本标签设置为字符串,然后在页面加载后使用jquery replaceWith()将它们添加到文档中: var a = '&lt;script type="text/javascript"&gt;some script here&lt;/script&gt;'; $('#someelement').replaceWith(a); 但是我在那个变量上有字符串文字错误。然后,我尝试将字符串编码为: var a = '&amp;left;script type="text/javascript"&amp;gt;some script here&amp;lt;\/script&amp;gt;'; 但将其发送replaceWith()给浏览器只输出该字符串。 有人可以让我知道您将如何&lt;script&gt;在页面加载后(最好是通过jQuery)向浏览器动态添加标签?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.