ジャバスクリプト以下のコードから、再利用性をjavascript関数に適用する方法はありますか?
window.onload=function() {
document.getElementById("next").onclick=function() {
document.getElementById("out_est_value").innerHTML=document.getElementById("est_value").value;
document.getElementById("out_int_est_value").innerHTML=document.getElementById("est_value").value*0.75;
}
}
入力
<label>Estimated value of property:</label><input type="text" name="est_value" id="est_value" maxlength="30"class="required number"value=""/> <br>
出力
<p> You told us the estimated value of your property is £<span class="red" id="out_est_value"></span> based on this we estimate that the initial cash offer is likely be around £<span class="red" id="out_int_est_value"></span>.<p>
? – Variant
今後どのコードを再利用したいですか? –
"est_value"の値を再利用して別の範囲に表示したい – tony