2012-08-29 208 views
2

例子是​​或見下文:jQuery .change()事件沒有被觸發?

<select class="businessTypePullDown"> 
    <option value="" disabled selected>Business Type</option> 
    <option value="1">General</option> 
    <option value="2">Lawyer</option> 
    <option value="3">Software Development</option> 
    <option value="4">Auto-repair</option> 
</select> 

function filterPullDown() { 
    alert('hello'); 
} 

$("businessTypePullDown").change(filterPullDown); 

回答

7

只是一個錯字,你錯過了一個點:

$(".businessTypePullDown") 

你的小提琴更新:http://jsfiddle.net/4RAPH/1/

+0

重大,重大史詩捂臉。謝謝。 – ehabd

+0

並非如此史詩般,可能會在8個工作小時後發生。 :) – fcalderan

+0

昨天有一個我自己,拼寫可見錯誤... – Adam