我有一个带有许多选择标签的from,当用户提交表单时,我想检查用户是否为所有选择标签选择了一个选项,这是我的jquery代码
$('#apForm select').each(function(){
var $this = $(this);
if ($this.selectedIndex == 0){
var error = 'fill this please' ;
$this.next('span').text(error);
errorCount = errorCount + 1;
}
});
我试过这个
$this.attr("selectedIndex")
我只是告诉你我的问题代码 如果我应该提供更多代码告诉我
谢谢你的帮助
答案 0 :(得分:3)
var $this = $(this);
if($this.get(0).selectedIndex == 0) {
}
或只是简单
this.selectedIndex; // not $this / $(this)
如果没有option
,则会返回-1
答案 1 :(得分:3)
这是this.selectedIndex,而不是$ this.selectedIndex:)
答案 2 :(得分:0)
如果您使用的是高于1.6的jQuery版本?然后你可以使用
if ( $this.prop('selectedindex') == 0 ){ /* handle */ }