衫裤跑路 2009-09-12 05:21 采纳率: 50%
浏览 278
已采纳

使用 jQuery 禁用 / 启用输入?

$input.disabled = true;

or

$input.disabled = "disabled";

Which is the standard way? And, conversely, how do you enable a disabled input?

转载于:https://stackoverflow.com/questions/1414365/disable-enable-an-input-with-jquery

  • 写回答

16条回答 默认 最新

  • 笑故挽风 2009-09-12 05:23
    关注

    jQuery 1.6+

    To change the disabled property you should use the .prop() function.

    $("input").prop('disabled', true);
    $("input").prop('disabled', false);
    

    jQuery 1.5 and below

    The .prop() function doesn't exist, but .attr() does similar:

    Set the disabled attribute.

    $("input").attr('disabled','disabled');
    

    To enable again, the proper method is to use .removeAttr()

    $("input").removeAttr('disabled');
    

    In any version of jQuery

    You can always rely on the actual DOM object and is probably a little faster than the other two options if you are only dealing with one element:

    // assuming an event handler thus 'this'
    this.disabled = true;
    

    The advantage to using the .prop() or .attr() methods is that you can set the property for a bunch of selected items.


    Note: In 1.6 there is a .removeProp() method that sounds a lot like removeAttr(), but it SHOULD NOT BE USED on native properties like 'disabled' Excerpt from the documentation:

    Note: Do not use this method to remove native properties such as checked, disabled, or selected. This will remove the property completely and, once removed, cannot be added again to element. Use .prop() to set these properties to false instead.

    In fact, I doubt there are many legitimate uses for this method, boolean props are done in such a way that you should set them to false instead of "removing" them like their "attribute" counterparts in 1.5

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(15条)

报告相同问题?

悬赏问题

  • ¥15 微信公众平台自制会员卡可以通过收款码收款码收款进行自动积分吗
  • ¥15 随身WiFi网络灯亮但是没有网络,如何解决?
  • ¥15 gdf格式的脑电数据如何处理matlab
  • ¥20 重新写的代码替换了之后运行hbuliderx就这样了
  • ¥100 监控抖音用户作品更新可以微信公众号提醒
  • ¥15 UE5 如何可以不渲染HDRIBackdrop背景
  • ¥70 2048小游戏毕设项目
  • ¥20 mysql架构,按照姓名分表
  • ¥15 MATLAB实现区间[a,b]上的Gauss-Legendre积分
  • ¥15 delphi webbrowser组件网页下拉菜单自动选择问题