当前位置:网站首页 > 网站建设教程 > HTML教程 > 正文

在Angular的index.html里插入script,拦截所有动态创建标签页的场景

教程管理员 发布于2023-10-04 08:24 HTML教程 171

简介: 在Angular的index.html里插入script,拦截所有动态创建标签页的场景

注意,下面这段代码只能插入在Angular应用的index.html里,直接插入任何Component的index.html里不会生效:

<script>
  console.log("Jerry");
  debugger;
  var scripts = document.querySelectorAll("script");
  var old = document.createElement;
  var _this = window.document;
  document.createElement = function(input){
    console.log("trying to create new tag: " + input);
    return old.call(_this, input);
  }
  debugger;
</script>

image.png


琼ICP备09004296号-12