gpt4 book ai didi

javascript - 在jquery post之后替换div

转载 作者:行者123 更新时间:2023-12-02 19:21:27 25 4
gpt4 key购买 nike

我正在使用 ajax post 请求来验证用户身份,此脚本会回复完整的网页。如果成功,响应中会有一个名为 #logged 的 div。

我想做的是检查请求的结果是否包含logged,然后替换相应的#primary-content div中的内容。我该怎么做?

最佳答案

I want to check if the response contains a div called logged, then get the content of a div called 'primary-content' contained in the response string.

真的非常简单...一旦您的 ajax 对象 readyState 达到 4

就这样做...假设您的 ajax 或数据对象称为 ajax

var logged = $("#logged", $(ajax.responseText)); //grab the logged element from the ajax obj
//check that the logged element exists
if(typeof logged !== "undefined"){
//replace the content
$("#primary-content").html(logged.contents());
}

来源

关于javascript - 在jquery post之后替换div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12496011/

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