gpt4 book ai didi

jquery - 我可以在一行中使用两个事件吗?

转载 作者:行者123 更新时间:2023-12-01 02:08:03 26 4
gpt4 key购买 nike

我希望在按键和更改时执行操作。

下面的语句非常适合 keyup 事件。我想在更改时复制它。

有没有简单的方法可以实现这一点?

$("#YourName").keyup(function() {
ThisValue = $(this).attr("value");
if (ThisValue.length > 0) {
ThisValue = "<b>From:</b><br /> " + ThisValue;
$("#YourNameValid").html(ThumbsUp);
} else {
ThisValue = "";
$("#YourNameValid").html("");
}
$("#YourNameText").html(ThisValue);
});

最佳答案

试试这个

$("#YourName").bind('keyup change', function() {
ThisValue = $(this).val();
if (ThisValue.length > 0) {
ThisValue = "<b>From:</b><br /> " + ThisValue;
$("#YourNameValid").html(ThumbsUp);
} else {
ThisValue = "";
$("#YourNameValid").html("");
}
$("#YourNameText").html(ThisValue);
});

关于jquery - 我可以在一行中使用两个事件吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6792508/

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