htmle裡的「disabled」和「checked」一樣 不管是=true false 都是true
所以只能靠js解決==
可以用removeAttr把disabled的這屬移移掉:
$('.checkboxN').removeAttr('disabled');
或是設為空字串:
$('.element').attr('disabled', '');
如果是要disable
可以增加屬性:
$('.element').attr('disabled', 'disabled');
沒有留言:
張貼留言