jquery $(文档)关于该类的一个选择框中的更改值想要提醒当前选择框的选定选项

前端之家收集整理的这篇文章主要介绍了jquery $(文档)关于该类的一个选择框中的更改值想要提醒当前选择框的选定选项前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
跨度内有一个默认选择框

示例在这里是http://jsfiddle.net/pzphbnxb/18/

<span id="all_locations">

<select name="united_kingdom" id="united_kingdom" class="location" >
<option value="blank">Select</option>
<option value="england">England</option>
</select>

</span>

1)单击选择框并更改值.

2)结果显示下一个选择框

3)如果我点击下一个选择框,我想提醒(例如)单击的选择框的ID.但我看到上面选择框的警报.

这是jquery

$(document).on('change','.location',function(){

$('#all_locations').append('<select name="loc_in_england" id="loc_in_england" class="location" ><option value="blank">Select</option><option value="london">London</option>');    

alert ( $('.location').find(":selected").val() + ' selected val' );
alert( $(".location").attr('id') + ' select id' );    

}); //$(document).on('change'

我的意思是,我点击’.location’,点击某个选择框,我必须获得点击类的attr(‘id’).为什么我得到第一个选择框的类的attr(‘id’)?

我是否需要使用类似.closest的内容获取点击选择框的ID?如果.closest,那么最接近什么?

解决方法

使用$(this) DEMO
$(document).on('change',function(){

//    alert('test');

$('#all_locations').append('<select name="loc_in_england" id="loc_in_england" class="location" ><option value="blank">Select</option><option value="london">London</option>');    


alert ( $(this).find(":selected").val() + ' selected val' );
alert( $(this).attr('id') + ' select id' );    

}); //$(document).on('change'

猜你在找的jQuery相关文章