我试图在onchange事件中传递url中的选项框的值。我必须将选中的选项框的值传递给some.php文件。我试过了,但它不能为我工作
Bellow是我的示例代码
<select id="font" onchange="document.getElementById('font').src='some.php?fontname='+this.value">
<option value="arial" >arial</option>
<option value="stencil" >stencil</option>
</select>
答案 0 :(得分:0)
您需要使用javascript location.href
进行重定向。
<select id="font" onchange="window.location.href='some.php?fontname='+this.value">
<option value="arial" >arial</option>
<option value="stencil" >stencil</option>
</select>