gpt4 book ai didi

javascript - 如何通过 AJAX 解析和使用 HTML 和变量?

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

我正在向 JS 文件发送一堆 HTML。 JS 文件只是使用 JQuery 将 HTML 渲染到页面,例如:

$.ajax({
url: '/ajax/nocache/someurl',
type: 'html',
success: function(html) {
$('.wrapper').html(html);
}
});

这很好用。

但是,我现在需要发送一组数据,例如:

  [
'hash' => $hash,
'html' => $rendered_html,
]

我不确定如何修改上面的 JS 以接受和使用 HTML 和哈希。

有人知道我该怎么做吗?

最佳答案

使用dataType.'json'让它工作,例如:

$.ajax({
url: '/ajax/nocache/someurl',
dataType.'json',
success: function(html) {
var hash = result.hash;
$('.wrapper').html(result.html);
}
});

关于javascript - 如何通过 AJAX 解析和使用 HTML 和变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50092905/

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