How to implement JS dynamic insertion of scripts and insertion of referenced external link scripts

php中世界最好的语言
Release: 2018-05-28 14:15:46
Original
2250 people have browsed it

This time I will show you how to dynamically insert JS scripts and insert referenced external link scripts, and how to implement JS dynamically insert scripts and insert referenced external link scripts.What are the precautions?. Here are practical cases. Let’s take a look.

What is a js dynamically inserted script?

refers to a script that does not exist when the page is loaded, but can be modified at some point in the future. DOM dynamically added script. Same as working with HTML elements.

js There are also two ways to dynamically insert scripts: insertingJavaScriptcode and inserting external files.

1. Directly insert javascript code

Copy after login

Logically speaking, the following DOM code is valid:

var script = document.createElement("script"); script.type = "text/javascript"; script.appendChild(document.createTextNode("function sayHi() {alert('hi');}")); document.body.appendChild(script);
Copy after login

These DOM codes run normally in Firefox, Safari, Chrome and Opera. But in IE, it causes an error. IE treats

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!