我需要用下拉选择器替换链接。我的链接包含多个变量:
<select id="mySelect">
<option value="'.$showURL.'"'.($resultsBy == '' ? ' selected="selected"' : '').'>option 1</option>
<option value="'.$showURL.'showPercent&thold='.$threshold.'"'.($resultsBy == 'showPercent' ? ' selected="selected"' : '').'>option 2</option>
</select>
我正在使用 jQuery,但很难完成我的功能:
$("#mySelect").change(function(){
window.location = ??? (this.value ?)
});
使用 this.value 似乎不正确...