event.target
返回执行操作的DOM元素。如何从输出中获取特定的子元素?
这是我的表单(带有Angular标记):
<form (ngSubmit)="onSubmit($event)" id="kekpek">
<div class="form-group">
<label>Example file input</label>
<input type="file" class="form-control-file" #fileupload [(ngModel)]="myFile" name="myFile" (change)="fileChange($event)"/>
</div>
<button type="submit" class="btn btn-success">Submit</button>
</form>
它激发了这个功能:
onSubmit(event) {
console.log(event.target);
}
输出整个表格。我需要访问input
函数中的onSubmit()
元素。
答案 0 :(得分:9)
您可以使用documentElement.querySelector()
方法。
function onSubmit(event){
console.log(event.target.querySelector('input'));
}
您可以使用任何有效的CSS查询来获取所需的元素
答案 1 :(得分:0)
这应该有帮助
onSubmit(event) {
console.log(event.target.firstChild.children[1]);
}