我可以在angular.json中指定此文件路径,但是据我了解,它将被全局包含在所有组件中。
我只想仅在仪表板组件中导入特定的js文件。
dashboard.components.ts
import { Component, OnInit } from '@angular/core';
@import url('../../../node_modules/jquery-ui-dist/jquery-ui.min.js');
答案 0 :(得分:0)
尝试以下方法
declare var $: any;
import '../../../node_modules/jquery-ui-dist/jquery-ui.min.js';
export class MemMonComponent {
createSomething() {
$("#yourelement").html('');
}
}
必须将其放入AfterViewInit