“JQuery in Angular” Kod odpowiedzi

Użyj jQuery w kątowym

// In the console
// First install jQuery
npm install --save jquery
// and jQuery Definition
npm install -D @types/jquery

=======================================(in angular)
import * as $ from 'jquery';
//
$('#elemId').width();

// OR

// CommonJS style - working with "require"
import $ = require('jquery')
//
$('#elemId').width();
dungeon master

JQuery in Angular

//first step:
npm install --save jquery

npm install -D @types/jquery

//secong step:
"scripts": [ "node_modules/jquery/dist/jquery.min.js" ]

//third step:
<script type="text/javascript" src="assets/js/jquery-2.1.1.min.js"></script>

//fourth step in .ts file:
import * as $ from 'jquery';

ngOnInit(): void {
    this.GET_LOGIN_FORM_VALUE();

    $(document).ready(() => {
      $("button").click(() => {
        $("h3").css("color", "red");
      });
    });
  }
30_Savaliya Denish

Deklaruj * Angular JQuery

declare var $:any;
GutoTrosla

Dodaj jQuery Angular

../node_modules/jquery/dist/jquery.min.js
Courageous Cockroach

Odpowiedzi podobne do “JQuery in Angular”

Pytania podobne do “JQuery in Angular”

Więcej pokrewnych odpowiedzi na “JQuery in Angular” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu