0
我嘗試在Angular 4項目的組件中使用JQ插件。 這裏是我的代碼TypeScript和JQ插件(Angular4)
import { Component, OnInit } from '@angular/core';
import * as $ from "../../../node_modules/jquery/dist/jquery.min.js";
import "../../../node_modules/materialize-css/dist/js/materialize.min.js";
@Component({
selector: 'app-table',
templateUrl: './table.component.html',
styleUrls: ['./table.component.css']
})
export class TableComponent implements OnInit {
constructor() { }
ngOnInit() {
$(document).ready(function() {
$('select').material_select();
});
}
}
「material_select」是從插件的功能。 但在我的控制檯,我看到下一個: console screenshot
猜猜我不明白如何導入jq插件在這裏。 我該怎麼做?