How to disable/enable input field on click with jQuery

后端 未结 7 807
慢半拍i
慢半拍i 2020-12-31 13:36

How to properly enable/disable input field on click with jQuery?

I was experimenting with:

$(\"#FullName\").removeAttr(\'disabled\');
7条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-31 14:09

    This should do it.

    $("#FullName").attr('disabled', 'disabled');
    

    Shiplu is correct, but use this if you have are not using jquery 1.6+

提交回复
热议问题