JavaScript insertion <script> Tagging

Source: Internet
Author: User

Inserting <script> tags into the iframe in the page, I just can't insert it.

1.jquery

for (Var i=0;i<scriptarray.length-1;i++) {
var script = document.createelement (' script ');
Script.type = ' Text/jacascript ';
SCRIPT.SRC = Scriptarray[i]; Fill in your own JS path
$ ("#viewPage"). Contents (). Find ("Body"). Append (script);
}

Append this method is the jquery<script> tag will be run by the browser to parse out, so it is not inserted DOM;

2.javascript

for (Var i=0;i<scriptarray.length-1;i++) {
var scriptdom = document.createelement (' script ');
Scriptdom.setattribute ("type", "Text/javascript");
Scriptdom.setattribute ("src", scriptarray[i]);
$ ("#viewPage"). Contents (). Find ("body") [0].appendchild (ScriptDom);
}

If you really want the element to appear in the DOM, do not use jquery attachments. Use native appendchild to achieve this.

Source: Https://stackoverflow.com/questions/610995/cant-append-script-element

JavaScript insertion <script> Tagging

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.