Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
if関数で剣道ドロップダウンリストを有効または無効にすることを知りたいです。
たとえば、剣道のドロップダウン リストが有効になっている場合は戻り値 true、それ以外の場合は false
どうやってやるの?
すべての回答に感謝します
あなたは非常に簡単に行うことができます
$('#selectId').prop('disabled');
無効にすると、KendoUI も選択を無効にしたため、次のようになります。
var state = $('#selectId').prop('disabled');