1
ボタンのタイプについて質問があります。このコードでは、どのようなデータ計算型が意味するのでしょうか?data-calc-typeとはどういう意味ですか?
<label for="x">x: </label><input id="x" type="number" placeholder="0"/>
<label for="y">y: </label><input id="y" type="number" placeholder="0"/>
<label for="z">z: </label><input id="z" type="number" placeholder="0"/>
<div id="calculations">
<button data-calc-type="area">Pole</button>
<button data-calc-type="circuit">Obwód</button>
<button data-calc-type="volume">Objetość</button>
</div>
<p>Wynik: <span id="result"></span></p>
(https://developer.mozilla.org/en/docs/Web/Guide/HTML/Using_data_attributes) –
データ属性は、値を格納したときにそれを参照するために使用することができますスクリプティング 基本的には、ボタンをクリックすることでトリガーされるイベントが1つあり、スクリプトは属性データを読み取って処理する方法を知ります。 – MadeInDreams
@MadeInDreams、これを回答として投稿できると思います。 –