In order to release script resources, some additional processing is usually performed after returning.
script = document.createElement('script');
script.src =
'http://example.com/cgi-bin/jsonp?q=What is the meaning of life?';
script.id = 'JSONP';
script .type = 'text/javascript';
script.charset = 'utf-8';
// After the tag is added to the head, it will be automatically loaded and run.
var head = document.getElementsByTagName('head')[0];
head.appendChild(script)
In fact, many popular JS libraries use this method to create A scritp tag, after assigning an ID, load the script (such as YUI get()), clear the tag after loading and callback. The problem is that when you clear these script tags, the browser simply removes the tag node.
var script = document.getElementById('JSONP');
script.parentNode.removeChild(script);
When the browser removes this tag node, it does not perform garbage collection on the JavaScript resources in the node, which means that the JavaScript resources in the node are removed. In addition to the label node, it is not enough. You have to manually clear the content of the script label node:
// Remove any old script tags.
var script;
while (script = document.getElementById('JSONP')) {
script.parentNode.removeChild(script);
// The browser will not recycle the object pointed to by these properties.
//Delete it manually to avoid memory leaks.
for (var prop in script) {
delete script[prop];
}
}
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn