ラジオボタンからのuser_inputに整数を掛ける必要があります。user_inputは1、2、または3のいずれかです。ラジオボタンの値をテキストエリアにプルスルーできますが、その数値を取得して何かを掛けるにはどうすればよいですか?理想的には、textstring + ='料金(£):' +(user_input)* '5' +'\n';が必要です。
助けてくれてありがとう!
// Get value of the 'Fee' radio buttons.
user_input = '';
for (i=0;i<document.forms['example'].fee.length;i++) {
if (document.forms['example'].fee[i].checked) {
user_input = document.forms['example'].fee[i].value;
}
}
textstring += 'Fee (£): ' + user_input + '\n';
// Write textstring to the textarea.
document.forms['example'].output.value = ("\n*** Thank You for your reservation***"+"\n")+ textstring + ("\n*** End of Form***"+"\n");