我有接下来的三个输入:
<input type="file" name="first"/>
<input type="file" name="second"/>
<input type="file" name="third"/>
如果选择了文件,我想做点什么。我有下一个功能:
$(function() {
$('input[name="INPUT-NAME"]').change(function (){
alert("Selected");
});
});
有没有办法将name
点击的输入字段传递给此函数?
答案 0 :(得分:1)
使用 $(this).attr('name')
方法或 this.name
获取name
属性
$(function() {
$('input').change(function() {
alert("Selected" + this.name);
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<input type="file" name="first" />
<input type="file" name="second" />
<input type="file" name="third" />