「jquery入門」select要素にdisabledを設定、禁止する方法
1.select禁止
$(“select").each(function () {
$(“#" + this.id).attr(“disabled", true);
});
2.select有効
$(“select").each(function () {
$(“#" + this.id).removeAttr(“disabled");
});
Coding Changes the World
1.select禁止
$(“select").each(function () {
$(“#" + this.id).attr(“disabled", true);
});
2.select有効
$(“select").each(function () {
$(“#" + this.id).removeAttr(“disabled");
});