我可以使用 JQuery 操作外部 HTML 文档吗?

发布于 2024-11-25 05:43:02 字数 425 浏览 2 评论 0原文

我想清理 HTML 文档(在 google 文档中创建),以便我可以将其发布到我的 CMS 上。

我有一个字符串形式的源文档,从 到 ,带有标题、样式、正文等。我想提取正文内容并替换/删除一些标签。如果我可以使用 jQuery 来做到这一点,我认为它会比使用更复杂的 html 解析器更容易。

但是当我尝试获取文档正文时,我没有得到可用的结果。我尝试过:

var gdoc = "<html>...google document...</html>"
$(gdoc) //list of text nodes, can not rebuild to document or find body
$("body",gdoc) //empty list

这是可行的还是我对此完全错误? 您可以分享任何提示/参考吗?

I would like to sanitize a HTML document (created in google docs) so I can publish it on my CMS.

I have the source document in a string, from to , with header, style, body etc. I would like to extract the body content and replace/eliminate a few tags. If I could do this using jQuery I think it would be easier than with more sophisticated html parsers.

But when I try to get the body of the document, I don't get usable results. I tried:

var gdoc = "<html>...google document...</html>"
$(gdoc) //list of text nodes, can not rebuild to document or find body
$("body",gdoc) //empty list

Is this doable or am i going completely wrong about this?
Any tips / references you could share?

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

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

发布评论

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

评论(2

你在看孤独的风景 2024-12-02 05:43:02

尝试像这样:

var gdoc = '<html><body><div id="foo">Bar</div></body></html>';
var data = $('<div/>').html(gdoc).find('#foo').html();
alert(data);

演示

Try like this:

var gdoc = '<html><body><div id="foo">Bar</div></body></html>';
var data = $('<div/>').html(gdoc).find('#foo').html();
alert(data);

Demo.

风追烟花雨 2024-12-02 05:43:02

我相信你可以做你想做的事,但你的措辞不正确。您可以从另一个文档中获取 HTML 并对其进行操作,但无法操作外部文档本身。你可以使用它来抓取它

$.get("url", function() {
  //modify stuff here
});

I believe you can do what you're trying to do, but you're wording it improperly. You can grab the HTML from another document and manipulate it, but you can't manipulate the external document persay. You can grab it using

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