简体   繁体   中英

how to get the value from an event target in js

inside js function I'm receiving event as parameter, how do you get the value of the event target?

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

在此处输入图片说明

尝试:

var myVal = event.target.value;

This will work:

(<HTMLInputElement>event.target).value

or

event.target as HtmlInputlement

Try:

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM