gpt4 book ai didi

javascript - 用于 ajax 加载内容的 jQuery 选择器

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

我使用过这个库: http://www.jacklmoore.com/autosize/

为了使用它,我应该使用如下语法:

autosize($('textarea#description'));

或任何其他 JavaScript 选择器。但是我的文本区域是通过ajax加载的,但它不起作用。

还有其他可以与 ajax 元素配合使用的选择器吗?谢谢

最佳答案

只需将 jquery 选择器包裹起来,然后使用 .find() 来缩小范围。

$.ajax({...}).done(function(responseHTML){
// depending on what the function is doing you may need to append it to the body first.
$(responseHTML).appendTo('body'); // or wherever you want to put it
$textarea = $(responseHTML).find('#description');
autosize($textarea);
});

关于javascript - 用于 ajax 加载内容的 jQuery 选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38789859/

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