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

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

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 08: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条)

报告相同问题?

悬赏问题

  • ¥15 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置