gpt4 book ai didi

javascript - jQuery 在另一个输入有值时禁用输入

转载 作者:行者123 更新时间:2023-11-29 16:59:19 26 4
gpt4 key购买 nike

我想在将任何文本添加到另一个输入时禁用特定输入。尝试做的是这个JS

$('#sPriceRewards').on('input', function() {
$(this).find('.inputReward').not(this).prop('disabled', this.value.length)});

HTML

<input type="text" name="sPriceRewards" id="sPriceRewards" value="" />
<input type="text" name="sReward1" value="" class="inputReward" />

Here's fiddle

谢谢

最佳答案

这是一个简单的逻辑:https://jsfiddle.net/p623brhL/4/

$('#sPriceRewards').on('input', function() {

if($(this).val().length)
$('.inputReward').prop('disabled', true);
else
$('.inputReward').prop('disabled', false);
});

关于javascript - jQuery 在另一个输入有值时禁用输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29629583/

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