gpt4 book ai didi

javascript - 启用字段并允许使用 keyup 值进行编辑

转载 作者:行者123 更新时间:2023-12-03 07:30:12 24 4
gpt4 key购买 nike

我有一个脚本,可以在另一个字段中输入值时启用/禁用文本字段。问题是当该字段启用时我也希望它可以编辑。当前脚本启用该字段,但我无法编辑文本。这是我所拥有的

<script type='text/javascript'>
$(function(){
$('.addbut').onkeyup(function(){
if ($(this).val() == '') {
$('.enableOnInput').prop('disabled', true);
} else {

$('.enableOnInput').prop('disabled', false);
}
});
});
</script>

然后 html 表单就有这个。

<div class="input ">
<input type="text" class="addbut" name="location" id="location"></div>


<div class="input"><input class="enableOnInput" disabled=""type="text"id="name" name="street" required></div>

最佳答案

使用.keyup(而不是.onkeyup(

关于javascript - 启用字段并允许使用 keyup 值进行编辑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35832400/

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