<form>
Chapter 1 - Please enter how many copys you would like <br>
<input type="text" id="chap1"> <br><br>
Chapter 2 - Please enter how many copys you would like <br>
<input type="text" id="chap2"> <br><br>
Chapter 3 - Please enter how many copys you would like <br>
<input type="text" id="chap3"> <br><br>
Chapter 4 - Please enter how many copys you would like <br>
<input type="text" id="chap4"> <br><br>
Chapter 5 - Please enter how many copys you would like <br>
<input type="text" id="chap5"> <br><br>
<b> Total price : <output id = "total"> 0 </output> </b>
我試圖創建一個網站中,你可以通過章節訂購的書籍,每章花費£2。我需要它將單個表格的值乘以2,然後在輸出中顯示此成本。我想用java腳本來做到這一點,而不是jQuery。
我還沒有嘗試過很多,因爲我無法找到很多關於這個問題,所以任何指針在正確的方向將不勝感激。
感謝
[雄辯的Javascript(http://eloquentjavascript.net/) – Wainage
給小有點更多的解釋你的問題你想要做什麼 –
我希望能夠讓用戶定義他們想要的副本數量,例如第1章他們會輸入一個數字等 然後我想它的價格乘以數字(2英鎊),並顯示所有副本加在一起的總數。 –