在下面的代码中,我需要知道选择了什么选项。适当的方式是什么?谢谢
$(window).ready(function() {
$("#Tmimata > option").each(function(index) {
var mythis = $(this);
if (mythis.selected) {
}
else {
}
});
});
答案 0 :(得分:1)
要检查元素是否已被选中,请should use .prop()
:
if (mythis.prop('selected')) {
// do something
}
答案 1 :(得分:0)
您使用:selected
选择器
if (mythis.is(':selected')) {
}