参考http://www.runoob.com/jquery/jquery-ref-html.html
jQuery属性操作
<!--定义按钮-->
<input type="submit" id="submit" value="上传">
//禁用按钮
$("#submit").attr({"disabled" : "disabled"});
//取消按钮禁用
$("#submit").removeAttr("disabled");
参考http://www.runoob.com/jquery/jquery-ref-html.html
jQuery属性操作
<!--定义按钮-->
<input type="submit" id="submit" value="上传">
//禁用按钮
$("#submit").attr({"disabled" : "disabled"});
//取消按钮禁用
$("#submit").removeAttr("disabled");