我正在尝试将文件导入(Javascript)导入我的.component.html文件中的特定位置。 构建后,AngularJS只会忽略它。 事实是,它是外部的,由3rd提供,必须在网站上实施。 我该怎么做才能使其正常运行,并能够将其放置在HTML DOM中的特定位置?
您是否认为可以通过在index.html中放置类似的内容(AngularJS的编译器允许Javscript脚本),然后在DOM在加载后准备好之后再调用它来提供帮助?
谢谢。
答案 0 :(得分:0)
将angularjs脚本添加到html时:
<!DOCTYPE html>
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.7.2/angular.js">
</script>
</head>
<body>
<p id="demo">Click the button to change the layout of this paragraph</p>
<script>
function myFunction() {
var x = document.getElementById("demo");
x.style.fontSize = "25px";
x.style.color = "red";
}
</script>
<button onclick="myFunction()">Click Me!</button>
</body>
</html>