[jQuery]removeAttr()で属性を削除する

書式
$(“セレクター").removeAttr(“属性名")
使用例

$cft.each(function(){
    var name = $(this).attr("name");
      var type = $(this).attr("type");
       //some code
}
$cft.removeAttr("disabled");

 

jQuery

Posted by arkgame