-1

要素にクラス 'treeroot' があるかどうかを確認するにはどうすればよいselect optionですか? true の場合: ユーザーから選択できないようにしますか?

<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>
4

1 に答える 1

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

ユーザーは「無効」オプションを選択できませんが、最初のオプションが無効になっている場合は、折りたたんだときにドロップダウンに表示されます。

于 2013-02-26T01:16:34.343 に答える