标签: jquery select option
var tester = $("select[name='SELECTNAME']").attr('id');
任何人都可以告诉我获取特定ID /值的正确方法是什么 选择?
谢谢。
答案 0 :(得分:1)
$("select[name='SELECTNAME']").change(function() { var id = $(this).children(":selected").attr("id"); });