2013-02-26 82 views
-1

我如何檢查select option元素是class「樹根」,如果是真的:被從可選擇停止用戶?jQuery的檢查,如果「選擇選項」元素具有類「樹根」,如果是真的:從被選擇停止

<select name="_groups_id_assign" size="1" class="valid"> 
    <optgroup label="Entité racine" style="display: none; "> 
     <option value="6" class="treeroot" 
      title="Production - ">Production</option>//this one 
     <option value="8" class="tree" 
      title="Production &gt; Accident du travail Agent - " 
     > »Accident du travail Agent</option> 
     <option value="4" class="treeroot" 
      title="Production Automobile - " 
     >Production Automobile</option>//this one 
     <option value="5" class="tree" 
      title="Production Automobile &gt; Automobile - " 
     > »Automobile</option> 
    </optgroup> 
</select> 
+0

爲什麼拇指下來嗎? – user2077308 2013-02-26 01:21:04

+0

也許是因爲你沒有展示你迄今爲止在JavaScript部門希望解決它試圖 – 2014-01-17 17:55:09

回答

2
$("option.treerot").prop('disabled', true) 

用戶無法選擇「已禁用」選項,但如果第一個選項被禁用它仍然會出現在下拉當它崩潰了。

相關問題