我需要将单选按钮中的 user_input 乘以一个整数。user_input 是 1,2 或 3。我可以将单选按钮值拉入文本区域,但我如何获取该数字并将其乘以某个值?理想情况下,我需要 textstring += 'Fee (£): ' + (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");