gpt4 book ai didi

javascript - 禁用文本字段,直到从选择列表中选择选项

转载 作者:行者123 更新时间:2023-11-30 13:35:26 26 4
gpt4 key购买 nike

我在选择列表中有一个选项列表,我也有包含选中时选项值的文本字段。我想让文本字段默认禁用,当我选择其中一个选项时 - 文本字段将被启用。有人可以指导我举一个类似的例子吗?

谢谢

最佳答案

$(function() {

var $select = $('#idForSelectBox'),
$textarea = $('#idForTextarea'),
status;

$select.bind('change', function() {

// If the value of the select box matches "Whatever you want"
// set status to '', else set status to 'disabled'
status = ( $(this).val() === 'Whatever you want' ) ? '' : 'disabled';

$textarea.attr('disabled', status);

});

});

关于javascript - 禁用文本字段,直到从选择列表中选择选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5091805/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com