ts调js的简单的方法
发布网友
发布时间:2022-09-04 18:02
我来回答
共1个回答
热心网友
时间:2天前
1.在index.html中,写上
<body>
<app-root></app-root>
<script>
function createClusterer() {
alert("test");
}
</script>
</body>
2.然后在ts中,写(这个是事件调用,自己写吧,就一个button的事情)
onclick() {
window 'createClusterer' ;
}
这样就可以调用js方法了。