gpt4 book ai didi

jquery - 在返回 jquery ajax 帖子时获取特定的 html

转载 作者:行者123 更新时间:2023-12-01 05:06:55 24 4
gpt4 key购买 nike

$('#form-register').change(function() {
var i_username = $('input#input-username').val();
var i_password = $('input#input-password').val();
var i_company = $('input#input-company').val();
var i_phone = $('input#input-phone').val();
$.post("home", {
username : i_username,
password : i_password,
company : i_company,
phone : i_phone,
register : 'helloworld'
}, function(return_data){
$('body').html(return_data);
});
});

好吧,问题可能出在 $('body').html(return_data); 我们可以从返回数据中获取特定的 html 吗?包含我的错误列表的示例#errordiv(如果存在)然后以某种方式附加到我的页面上?或者还有其他更好的方法吗?

感谢您的关注,

亚当·拉马丹

最佳答案

$(return_data) 将为您提供 html 结构

$(return_data).find('#errordiv') 将为您提供“error div”元素

关于jquery - 在返回 jquery ajax 帖子时获取特定的 html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4792592/

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