我有一个带有许多选择标签的标签,当用户提交表单时,我想检查用户是否为所有选择标签选择了一个选项,这是我的 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")
我只是给你我的代码,我的问题是我是否应该提供更多代码告诉我
谢谢你的帮助