我有一個從有許多選擇標記,當用戶提交我要檢查,如果用戶選擇所有的選擇標記一個選項的形式,這是我的jQuery代碼的jQuery的selectedIndex不起作用
$('#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")
我只是給你一塊我的代碼在我的問題是,如果 我應該給更多的代碼,告訴我
謝謝大家幫忙
@mgraph現在工程:) –