gpt4 book ai didi

jquery keyup 检测输入中的粘贴文本

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

我必须在这里使用jquery keyup来检测用户是否输入任何文本,但我的问题是如果用户使用鼠标粘贴文本,它将无法检测到它,你能告诉我原因吗?

这是我的源代码:

$("textarea").keyup(function(){
if($(this).val().length !== 0){
$('#submit').attr('disabled',false);

最佳答案

显然在某些情况下 jQuery 不能用于粘贴。您可能需要绑定(bind)到多个事件,如以下引用所示,以捕获用户准确粘贴内容。

来自Soliciting Fame - jQuery keyup vs bind - (from way-back machine)

// detect the change
$('input#myId').bind("change keyup input",function() {
// handle events here
});

更新:绑定(bind)deprecated在 Jquery 3.0 上并被替换为 on

// detect the change
$('input#myId').on("change keyup input",function() {
// handle events here
});

关于jquery keyup 检测输入中的粘贴文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21642758/

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