我附加了一个引用at javascript的子元素和一个样式表,但当不再使用它时,我想再次删除它。
var head = document.getElementsByTagName('head')[0];
// We create the style
var style = document.createElement('link');
style.setAttribute("rel", "stylesheet");
style.setAttribu
我有一个网站,在我的<script>标签下面有一个<noscript>标签,以防javascript无法加载。它基本上关闭了一些CSS值来处理一些平滑的滚动JS代码和一个预加载器。 但是,当我通过w3c HTML验证器运行站点时,它显示: Element style not allowed as child of element noscript in this context. (Suppressing further errors from this subtree.) 我使用的代码是: <noscript>
<style type="t