jQuery更改功能无法正常工作

前端之家收集整理的这篇文章主要介绍了jQuery更改功能无法正常工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我似乎无法让这种工作看起来应该如此
$('.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();   
        }
    });
});

http://jsfiddle.net/amuec/11/

(Darin的代码对我也不起作用)

原文链接:https://www.f2er.com/jquery/177131.html

猜你在找的jQuery相关文章