いくつかのラジオ ボタンを含むフォームがあり、ラジオ ボタンの選択の値を使用して、ボタンをクリックしたときに移動する URL を変更したいと考えています。
<input type="radio" name="Server" value="ftp://one.com" checked>One
<input type="radio" name="Server" value="ftp://two.com">Two
<button type="button" name="" onClick="location.href='document.getElementsByName("Server").checked + "/file.ext"'">Download
ラジオボタンでFTPサーバーを選択し、ボタンのダウンロードリンクを変更したい。