1. ホーム
  2. javascript

JavascriptでDivとその要素を有効化・無効化する [duplicate]

2023-08-27 03:50:49

質問

へのメソッドを探しています。 有効化および無効化 div id="dcalc" とその子です。

<div id="dcalc" class="nerkheArz"
 style="left: 50px; top: 150px; width: 380px; height: 370px;
 background: #CDF; text-align: center" >
 <div class="nerkh-Arz"></div>
 <div id="calc"> </div>
</div>

ページの読み込み時に無効化し、クリックで有効化できるようにしたいのですが?

これは私が試したものです

document.getElementById("dcalc").disabled = true;

どのように解決するのですか?

これらの設定は attr() または prop() という関数をjQueryに追加します。

jQuery (< 1.7)です。

// This will disable just the div
$("#dcacl").attr('disabled','disabled');

または

// This will disable everything contained in the div
$("#dcacl").children().attr("disabled","disabled");

jQuery (>= 1.7)です。

// This will disable just the div
$("#dcacl").prop('disabled',true);

または

// This will disable everything contained in the div
$("#dcacl").children().prop('disabled',true);

または

//  disable ALL descendants of the DIV
$("#dcacl *").prop('disabled',true);

ジャバスクリプトです。

// This will disable just the div
document.getElementById("dcalc").disabled = true;

または

// This will disable all the children of the div
var nodes = document.getElementById("dcalc").getElementsByTagName('*');
for(var i = 0; i < nodes.length; i++){
     nodes[i].disabled = true;
}