我有一个表单(下面的代码),每次单击一个选项时,都会出现一个按钮,其中包含发送给它的正确值。单击它会将您带到异地处理表单。这部分工作正常。我需要的是其中一个选项,比如选项 3 来为您提供单独的 URL。我已经在使用选择框的 onchange 了。有没有办法做多个 onchange 功能?可能按选项 id 定位?任何想法将不胜感激。
<script>
function clicker(frm,value,button) {
frm.LinkId.value = value;
if (value != "") {
document.getElementById(button).style.display = "inline";
} else {
document.getElementById(button).style.display = "none";
}
}
</script>
<form name="PrePage" align="center" id="Prepage" method ="post" style="width:190px; text-align:center;" action= "https://Simplecheckout.authorize.net/payment/CatalogPayment.aspx">
<label for="selectbox" style="font-family: rockwell, helvetica, arial, sans-serif; font-size:1.5em"; width:190px; text-align:left;">This donation is for:</label>
<select style="margin:0 0 30px 0; width:180px;" size="1" name="selectbox" id="selectbox" onchange="clicker(document.PrePage,document.PrePage.selectbox.options[this.selectedIndex].value,'button');" >
<option selected value=""></option>
<option value="value1">Option 1</option>
<option value="value2">Option 2</option>
<option value="value3">Option 3</option>
<option value="value4">Option 4</option>
<option value="value5">Option 5</option>
</select>
<input type="hidden" name="LinkId" id="LinkId" value="" /><input id="button" style="display:none; margin:0 0 30px 0; text-align:center;" type="image" src="images/donate_button.gif" alt="Donate" />
</form>