如何从js中的事件目标获取值

时间:2016-07-13 09:52:41

标签: javascript jquery jquery-ui-autocomplete

在js函数中我接收事件作为参数,你如何获得事件目标的值?

function myFn(event){
    ...
    close: function(event){
        var myVal = ... 
        /// should grab from 
        /// event-> arguments -> [0]->target -> property value painted in yellow (abc)        
    }
}

enter image description here

3 个答案:

答案 0 :(得分:19)

尝试:

var myVal = event.target.value;

答案 1 :(得分:0)

这将起作用:

jv_commit

(<HTMLInputElement>event.target).value

答案 2 :(得分:0)

试试:

function($event) {
  const value = $event.target.value;
  ...
}