中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

angular2怎么手動點擊特定元素上的點擊事件

發布時間:2021-02-07 10:40:33 來源:億速云 閱讀:299 作者:小新 欄目:web開發

小編給大家分享一下angular2怎么手動點擊特定元素上的點擊事件,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

我試圖在元素上編程點擊點擊事件(或任何其他事件),換句話說,我想知道在angular2中由jQuery .trigger()方法提供的類似功能.

有沒有內置的方法來做到這一點? …..如果不是,請建議我該怎么做

考慮以下代碼片段

<form [ngFormModel]="imgUploadFrm"
     (ngSubmit)="onSubmit(imgUploadFrm)">
    <br>
    <div class="input-field">
      <input type="file" id="imgFile" (click)="onChange($event)" >
    </div>
    <button id="btnAdd" type="submit" (click)="showImageBrowseDlg()" )>Add Picture</button>
 </form>

這里當用戶點擊btnAdd它應該觸發imgFile上的點擊事件

Angular4

代替

this.renderer.invokeElementMethod(
    this.fileInput.nativeElement, 'dispatchEvent', [event]);

使用

this.fileInput.nativeElement.dispatchEvent(event);

因為invokeElementMethod不再是渲染器的一部分.

Angular2

使用 ViewChild 與模板變量來獲取對文件輸入的引用,然后使用 Renderer 調用dispatchEvent來觸發事件:

import { Component, Renderer, ElementRef } from '@angular/core';
@Component({
 ...
 template: `
...
<input #fileInput type="file" id="imgFile" (click)="onChange($event)" >
...`
})
class MyComponent {
 @ViewChild('fileInput') fileInput:ElementRef;

 constructor(private renderer:Renderer) {}

 showImageBrowseDlg() {
  // from http://stackoverflow.com/a/32010791/217408
  let event = new MouseEvent('click', {bubbles: true});
  this.renderer.invokeElementMethod(
    this.fileInput.nativeElement, 'dispatchEvent', [event]);
 }
}

更新

由于Angular團隊不再勸阻直接的DOM訪問,所以也可以使用更簡單的代碼

this.fileInput.nativeElement.click()

看完了這篇文章,相信你對“angular2怎么手動點擊特定元素上的點擊事件”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

祥云县| 封丘县| 泾源县| 许昌县| 黄冈市| 洞口县| 海伦市| 调兵山市| 贵定县| 德昌县| 大田县| 高阳县| 宜宾县| 长春市| 赤壁市| 拉孜县| 临汾市| 邵阳县| 枝江市| 镇远县| 合作市| 屯门区| 宜兰市| 沧州市| 乌苏市| 酉阳| 水富县| 汉阴县| 贞丰县| 黄梅县| 临沭县| 门源| 墨江| 西藏| 津市市| 航空| 龙陵县| 安吉县| 疏附县| 临清市| 托克逊县|