gpt4 book ai didi

Jquery .keypress 动态添加的输入

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

我当前正在通过 .click 事件添加输入,然后想要监听此输入上发生的任何按键。但是,附加内容在插入后不会触发任何事件(即模糊、按键、焦点)。有没有人有什么建议?提前致谢!

$("#recipientsDiv").click(function(){
$(this).append('< input type="text" id="toInput" class="inlineBlockElement" style="border:0px none #ffffff; padding:0px; width:20px; overflow:hidden;" />')
$("#toInput").focus();
});
$("input").keypress(function(e){
var inputStr = $(this).html();
$("#inputCopier").text(inputStr);
var newWidth = $("#inputCopier").innerWidth;
$(this).css("width", newWidth);
});
$("#toInput").blur(function(){
$("#toInput").remove();
});

我也尝试过 .keyup .keydown ,但它们不起作用。

最佳答案

您的 keypress 处理程序只会添加到您添加它时存在的元素中。

您需要调用live方法将其添加到与选择器匹配的每个元素,无论何时添加。

例如:

$("input").live('keypress', function(e){
var inputStr = $(this).html();
$("#inputCopier").text(inputStr);
var newWidth = $("#inputCopier").innerWidth;
$(this).css("width", newWidth);
});

关于Jquery .keypress 动态添加的输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1983204/

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