0

ラジオボタンからの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 (&#163;): ' + 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");
4

1 に答える 1

0

やってみました:

textstring += 'Fee (&#163;): ' + (user_input*5) + '\n';
于 2013-01-17T18:22:10.003 に答える