formのid属性の値をJavaScriptで取得する

昨日、ちょっとした事(後日お知らせできるかもしれません)があって、NucleusやXHTML・php・XMLなどいろいろと参考にさせていただいているウェブ アルチザン ブログさんを再読した。

JS:XHTMLでValidなformのid属性の値をJavaScriptで取得する:getElementById

id属性にした場合、上記のJavaScriptではスクリプトエラーとなります。
この場合は、getElementByIdで取得します。
document.getElementById("Test").usercd.value

JS:XHTMLでValidなformのid属性の値をJavaScriptで取得する:getElementById

@Style簡易見積もりのJavaScriptを編集して・・・

function calc_total(){
total = 20000;
for (i=0; i<document.getElementById("mitumori").length-1; i++){
if (document.getElementById("mitumori").elements[i].checked){
total += eval(document.getElementById("mitumori").elements[i].value);
}
}
document.getElementById("mitumori").goukei.value ="おおよそ"+total+"円";
}

実は簡易見積もりのページは今までTransitionalだったのですが、おかげさまですべてのページがValid XHTML 1.0 Strict!

Posted