如何使用 jQuery .get() 获取原始 html 字符串

发布于 2024-12-21 05:55:08 字数 645 浏览 0 评论 0原文

我需要获取带有

标签和所有内容的原始 html,并将其放入变量字符串中。

因此,如果我有一个单独的文件 test.html,

<div>
<div><img src="images/htc_hero_wallpaper_01.jpg" width="20%" height="20%" alt="" /></div>
WORKS!!!
</div>

我需要 jQuery 命令

$.ajax({
  url: "test.html",
  success: function(){

 var htmlraw = ?????
 alert(htmlraw)  /// should print the raw test.html
  }
});

来打印

<div>
<div><img src="images/htc_hero_wallpaper_01.jpg" width="20%" height="20%" alt="" /></div>
WORKS!!!
</div>

I need to get raw html with <div> tags and everything, and put it in a variable string.

So if I have a separate file test.html

<div>
<div><img src="images/htc_hero_wallpaper_01.jpg" width="20%" height="20%" alt="" /></div>
WORKS!!!
</div>

I need the jQuery command

$.ajax({
  url: "test.html",
  success: function(){

 var htmlraw = ?????
 alert(htmlraw)  /// should print the raw test.html
  }
});

to print

<div>
<div><img src="images/htc_hero_wallpaper_01.jpg" width="20%" height="20%" alt="" /></div>
WORKS!!!
</div>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

森林散布 2024-12-28 05:55:08

这可能太晚了,但正确的方法是将 第四个参数设置为 $.get (dataType) 为“text”:

$.get("test.html", null, function(html) {
    console.log(html);
}, "text");

否则,它将自动检测响应是否为 HTML 并为您解析它。

This is probably way too late, but the correct way to do this is by setting the fourth parameter to $.get (the dataType) to "text":

$.get("test.html", null, function(html) {
    console.log(html);
}, "text");

Otherwise, it will auto-detect that the response is HTML and parse it for you.

掩耳倾听 2024-12-28 05:55:08
$.get({
  url: "test.html",
  success: function(data){

 var htmlraw = data;
 //alert(htmlraw)  /// should print the raw test.html
 $("#someDiv").html(htmlraw);
  }
});
$.get({
  url: "test.html",
  success: function(data){

 var htmlraw = data;
 //alert(htmlraw)  /// should print the raw test.html
 $("#someDiv").html(htmlraw);
  }
});
骄傲 2024-12-28 05:55:08

你应该看看 jQuery http://api.jquery.com/html/

You should take a look at .html() from jQuery http://api.jquery.com/html/

热血少△年 2024-12-28 05:55:08

如果您想获取文件中特定元素的 html,可以找到该元素并将其附加到新元素。这样,您将能够使用 .html() 获取原始 html 字符串

$.get("test.html", function(data)
{
    var specificEl = $(data).find('#specific-element');
    var html = $(document.createElement('div')).append(specificEl).html();

    console.log(html);
});

If you want to get the html of a specific element in your file, you can find the element and append it to a new element. This way, you will be able to get the raw html string with .html()

$.get("test.html", function(data)
{
    var specificEl = $(data).find('#specific-element');
    var html = $(document.createElement('div')).append(specificEl).html();

    console.log(html);
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文