doudouchan5830 2016-08-22 00:40
浏览 57
已采纳

如何从下拉列表中选择值时禁用输入类型=“文本”[关闭]

I have a drop-down list) and one is input type="text". what i want if i select value{2,3} from drop down list not first value then input type will be disabled and if i select again first value then it will be enable.

  • 写回答

2条回答 默认 最新

  • duanmei1536 2016-08-22 00:51
    关注

    Let's suppose you have this HTML code:

    <select id='dropdown'>
      <option value="1">1</option>
      <option value="2">2</option>
      <option value="3">3</option>
    </select>
    <input type="text" id="textInput" />
    

    Then you can act on change event on <select> to make <input> disabled or enabled by adding an event listener.

    Since you're using jQuery (as you've added jquery tag to the question), the example code could look like this:

    $('#dropdown').change(function() {
        if( $(this).val() == 1) {
            $('#textInput').prop( "disabled", false );
        } else {       
            $('#textInput').prop( "disabled", true );
        }
    });
    

    Here's a working fiddle: https://jsfiddle.net/wx38rz5L/2268/

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部