搜尋

首頁  >  問答  >  主體

angular.js - angular應用程式能否直接在html中取得元素作為參數傳入函數

angular應用,請問如何使能夠直接在 html 中使用jquery獲取元素並作為參數傳入函數呢?

<button ng-click="vm.getButton($(this))"></button>
var ctrl = this;
ctrl.getButton = (elem) => {
    console.log(elem);
};

函數裡面的 this 直接指向了當前scope,無法取得到元素,請問有解嗎?

过去多啦不再A梦过去多啦不再A梦2744 天前475

全部回覆(1)我來回復

  • 世界只因有你

    世界只因有你2017-05-15 17:05:04

    目前透過下面的方式實現了需求

    <button ng-click="vm.getButton($event)"></button>
    var ctrl = this;
    ctrl.getButton = ($event) => {
        console.log($($event.currentTarget));
    };

    回覆
    0
  • 取消回覆