gpt4 book ai didi

javascript - 如何通过 HTTP 将 HTML 文件加载到字符串中以便在 JavaScript 中使用?

转载 作者:行者123 更新时间:2023-11-30 12:28:49 30 4
gpt4 key购买 nike

我想从 JavaScript 以字符串形式访问 HTML 文件 (makemeastring.html)。 jQuery 的 .load 似乎不起作用。

最佳答案

$.get('makemeastring.html').then(function (data) {
console.log(data);

}).fail(function () {
// Error occurred, handle it here

});

jQuery 的 .load() 函数将数据放入 DOM 元素中。你不希望这样,所以 .get() 就可以了。

http://api.jquery.com/jquery.get/

关于javascript - 如何通过 HTTP 将 HTML 文件加载到字符串中以便在 JavaScript 中使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28388101/

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