gpt4 book ai didi

javascript - future 元素上的 jQuery html() 函数

转载 作者:行者123 更新时间:2023-12-01 02:05:18 25 4
gpt4 key购买 nike

我有一个表格。当用户在下拉列表中选择特定内容时,会加载外部文档,其中包含一些附加字段,如下所示

$( "#morefields" ).load( "partials/formadditionals.jsp", function() {
...
});

此“formadditionals.jsp”包含标题 <h1 id="form2title"></h1> 。现在加载完毕后我想在 <h1> 中写入一些内容通过

$('#form2title').html("Test");

...这不起作用,我假设是因为该元素之前不存在!?

如何使用 html()加载到 DOM 后对“ future ”元素起作用?

最佳答案

在回调函数中调用。

$( "#morefields" ).load( "partials/formadditionals.jsp", function() {
$('#form2title').html("Test");
});

无耻插件:http://curtistimson.co.uk/jquery/using-jquery-callback-functions/

关于javascript - future 元素上的 jQuery html() 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29970196/

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