Home » パソコン » 言語 etc... » JavaScript » [Javascript] Study » [Javascript] サンプル2
[Javascript] サンプル2
<script language="JavaScript">
<!--
function SAMPLE1(){
document.SAMPLE.txtPrice.value=document.SAMPLE.txtKosuu.value * 50;
}
//-->
</script>
<form name=SAMPLE>
リンゴ 50円 * <input type=text name=txtKosuu>個
<input type=button value="計算" onClick=SAMPLE1()><br><br>
合計<input type=text name=txtPrice>円です<br><br>
</form>
→ボタンが押されるとSAMPLEイベントが発生
テキストボックスに入力された内容を計算して
テキストボックスに表示
<!--
function SAMPLE1(){
document.SAMPLE.txtPrice.value=document.SAMPLE.txtKosuu.value * 50;
}
//-->
</script>
<form name=SAMPLE>
リンゴ 50円 * <input type=text name=txtKosuu>個
<input type=button value="計算" onClick=SAMPLE1()><br><br>
合計<input type=text name=txtPrice>円です<br><br>
</form>
→ボタンが押されるとSAMPLEイベントが発生
テキストボックスに入力された内容を計算して
テキストボックスに表示