jquery 属性 removeAttr(name)

removeAttr(name)

删除匹配集合中每个元素的属性‘name’

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
                    "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
  
  <script>
  $(document).ready(function(){
    
    $("button").click(function () {
      $(this).next().removeAttr("disabled")
             .focus()
             .val("editable now");
    });

  });
  </script>
  
</head>
<body>
  <button>Enable</button>
  <input type="text" disabled="disabled" value="can't edit this" />
</body>
</html>

 

$(this).next().removeAttr("disabled")
删除input元素中disabled属性。以下为删除属性

<input type="text" disabled="disabled" value="can't edit this" />

你可能感兴趣的:(html,jquery)