リンクをドロップダウン セレクターに置き換える必要があります。私のリンクには複数の変数が含まれています:
<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 を使用するのは正しくないようです...