最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Toggle a hidden div when a particular dropdown option is selectedde-selected - Stack Overflow

programmeradmin3浏览0评论

Hey everyone, I had a quick question that should be easy for someone who is experienced in Jquery and Javascript.

I'd like to have a hidden div that is below a drop-down field in my form. When one particular option is selected, the hidden div is displayed. I'd also like it to disappear when any other option is selected. I'm using this as a warning for the user since that option will run some specific db related functions.

Can anyone give me some hints on how to get this started?

Thanks.

Hey everyone, I had a quick question that should be easy for someone who is experienced in Jquery and Javascript.

I'd like to have a hidden div that is below a drop-down field in my form. When one particular option is selected, the hidden div is displayed. I'd also like it to disappear when any other option is selected. I'm using this as a warning for the user since that option will run some specific db related functions.

Can anyone give me some hints on how to get this started?

Thanks.

Share Improve this question asked May 10, 2011 at 13:39 jwBurnsidejwBurnside 8874 gold badges32 silver badges68 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 8

Here you go. (online demo http://jsfiddle/wwTxw/ )

HTML:

<select id="select">
    <option value="1">111</option>
    <option value="2">222</option>
    <option value="3">333</option>
</select>

<div id="warning" style="display:none">NO!!!</div>

jQuery Code;

$(function() {
    $('#select').change(function(){
        if ($(this).val() == "2") {
            $('#warning').show();
        } else {
            $('#warning').hide();
        }
    });
});
发布评论

评论列表(0)

  1. 暂无评论