Home >Web Front-end >JS Tutorial >Summary of 5 ways to set and remove disabled attributes in JQuery_jquery

Summary of 5 ways to set and remove disabled attributes in JQuery_jquery

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-05-16 17:33:411618browse
Copy code The code is as follows:

//Two methods to set the disabled attribute
$('# areaSelect').attr("disabled",true);
$('#areaSelect').attr("disabled","disabled");

//Three methods to remove the disabled attribute
$('#areaSelect').attr("disabled",false);
$('#areaSelect').removeAttr("disabled");
$('#areaSelect').attr ("disabled","");
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn