gpt4 book ai didi

javascript - ajaxComplete() 不起作用?

转载 作者:行者123 更新时间:2023-11-28 06:53:01 25 4
gpt4 key购买 nike

在我的代码中,prices.html 文件未加载。我希望加载prices.html 文件,然后我想在最后表示感谢。但它直接显示感谢消息。

这样ajaxComplete()可以工作吗?

    <script> 
$(button).click(function){
$(".pricelist").load("prices.html")
});

$(document).ajaxComplete(function()
{
$(".show").text("thank you for interest");
});
</script>
<body>
<div class= "pricelist"></div>
<div class="show"> </div>
</body>

最佳答案

执行您想要的操作的更简单直接的方法是使用 loadcomplete 回调参数。支持。

$(button).click(function () {
$(".pricelist").load("prices.html", function () {
$(".show").text("thank you for interest");
});
});

关于javascript - ajaxComplete() 不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32804371/

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