1

クリックに基づいて選択ボックスのテキストとステータスを変更したい場合があります。

$("#foo").click(function(){

 $("#mytext").toggle();
 $(this).text($(this.text() == 'on' ? 'off' : 'on');
 // here i also want to enable and disable a select box, not sure how to do this other   then checking if the value of (this).text is on or off.

});

どうもありがとう!

4

1 に答える 1

5
var status = $(this).text();

$('#dropdownId').prop('disabled',status != 'on');
于 2012-06-06T18:57:26.030 に答える