我似乎无法让这种工作看起来应该如此
$('.titleother').change(function() { if ($('.titleother').val() == 'Other') { $('.hiddentext').css('display','block') } })
对于这个HTML
<select class="titleother"> <option value="1">1</option> <option value="2">2</option> <option value="Other">Other</option> </select> <p class="hiddentext" style="display:none">TEXT</p>
有任何想法吗?
解决方法
这适用于我使用Chrome:
$(function(ready){ $('.titleother').change(function() { if ($(this).val() == 'Other') { $('.hiddentext').show(); } }); });
(Darin的代码对我也不起作用)