2011年4月10日 星期日

[jQuery]當select選單選到特定值 執行動作

在下拉式選單選到其他的選項就會show出id為other的輸入窗
$(function(){
$('select').change(function()
{
if($(this).val()=="其他"){
$("#other").show();
}else{
$("#other").hide();
}
});
});
設定change事件在切換select選單的時候就會去判斷
在tab 跟點擊都有用

沒有留言: