event.target is undefined in events

点点圈 提交于 2019-12-09 08:39:55

问题


How can one use each input values in events? Hope my below code will explain you well.

HTML:

<template name="UpdateAge">
    {{#each Name}}
    <div data-action="showPrompt">
       <div>
          Some content
       </div>

       <div>
         <div>
            Some content
         </div>
       </div>
       <div>
           Name : {{name}}
           Age : <input type="text" name="age" value="{{age}}"/> //I need to access age values in event
       </div>
    </div>
{{/each}}
<template>

JS:

Template.UpdateAge.events({
  'click [data-action="showPrompt"]': function (event, template) {
        console.log(event.target.age.value); // TypeError: event.target.age.value is undefined
  }
});

I dont know whether my approach is good for passing parameter values to events so suggestions are welcome.


回答1:


the notation you are using is valid only for form elements and when event.target IS a form element.

event.target.age.value

event.target is the element where the event occurred, event.currentTarget is the element which has attached the event handler

if you replace div with form and replace target with currentTarget then it will work

event.currentTarget.age.value

here a fiddle using your code




回答2:


If the event is bound on the container div then the input should be searched from target, because event.target would give you the element whom the event was attached to.

To access any value within the div you must first get access to that element and then use the properties of that element to access whatever needed - .value in this case.



来源:https://stackoverflow.com/questions/30342873/event-target-is-undefined-in-events

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!