如何为属性是disabled的表单绑定js事件

$(document).click(function(e){
    var el = e.target;
    if (el.tagName == 'INPUT') {
        $(el).removeAttr('disabled');
    }
})
原文地址:https://www.cnblogs.com/catgatp/p/8933533.html