开发者

Jquery enabling and disabling dom elements without removing

I have a form which at some point in its life has three choices. Depending on which item is checked more form elements will drop down. At the moment these are just hidden and will show/hide on click. However when validating these are still in the DOM. I didn't want to have to 开发者_如何学运维remove them and add them again each time. Is there a simpler way of enabling/disabling a chunk of form options?


you can put the different form elements in a div with an id. then do

$('#IdOfDivHoldingSetOfElements').find('input').attr('disabled', 'disabled');

and

$('#IdOfDivHoldingSetOfElements').find('input').removeAttr('disabled');

if you have drop down selects you'll need to also disabled the selects of course.


I have used this in a form to disable inputs. However they are always going to be in the DOM and depending on how you are validating the form, this may not be the answer.

$('#elementwrapper input').each(function() {
    $(this).attr('disabled', 'disabled');
});
$('#elementwrapper select').each(function() {
    $(this).attr('disabled', 'disabled');
});
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜