gpt4 book ai didi

jquery - 使用jquery过滤动态html

转载 作者:行者123 更新时间:2023-12-01 01:17:32 26 4
gpt4 key购买 nike

我试图通过 jquery 创建一些动态 html,将其过滤到我感兴趣的部分,并将该 html 部分附加到页面上的现有元素,但它不起作用。我在这个 fiddle 中做错了什么?

http://jsfiddle.net/3zKeL/4/

HTML:

<div id="output">This is the output:<br></div>

jQ:

var response = "<html><body><h1>hello</h1></body></html>";
$(response).filter("body").appendTo("#output");

最佳答案

$(response)
.filter(function() {
return $("body");
})
.appendTo("#output");

DEMO

你也可以这样做

$('<div/>')           // add response to fake div
.append(response)
.find('body') // find your target
.appendTo('#output'); // append the target

<强> DEMO

关于jquery - 使用jquery过滤动态html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10864929/

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