gpt4 book ai didi

javascript - 如何检测何时在输入字段中动态插入文本

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

在下面的代码中,我想知道如何检测何时在输入字段中动态插入文本

<input id="test"><br /> 
<a href="#">Click me</a>

$("#test").on("input", function() {
alert("Change to " + this.value);
});
$("a").on("click", function() {
$("#test").val("In clicks we trust.");
});

line to the code

最佳答案

监听 change 事件,此外,您必须在以编程方式添加文本后触发此事件:

$("#test").on("change", function() {
alert("Change to " + this.value);
});

$("a").on("click", function() {
$("#test").val("In clicks we trust.").change();
});

演示:http://jsfiddle.net/fSUd8/1/

关于javascript - 如何检测何时在输入字段中动态插入文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18471978/

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