我正在使用jquery下拉菜單。它幾乎已經完成,但出於某種原因,我無法獲得onChange的工作。onChange無法正常工作
<select id="cd-dropdown" class="cd-select" ONCHANGE="location = this.options[this.selectedIndex].value;" >
<option value="-1" selected>Selecione uma categoria</option>
<option value="1" class="icon-google-plus">Massa Muscular</option>
<option value="2" class="icon-facebook">Resistência</option>
<option value="http://www.google.com" class="icon-twitter" >Vitaminas</option>
<option value="4" class="icon-github">Emagrecimento</option>
</select>
什麼瀏覽器(和版本),你具有的問題是什麼? –
問題是什麼? –
爲了重定向瀏覽器,您需要將'location'指向'document.location'或'location.href'。 – steveukx