gpt4 book ai didi

javascript - 使用 Javascript 将段落从外部 HTML 页面插入到另一个 HTML 页面

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

我是 JavaScript 的新手,所以如果我想做的事情没有任何意义,请原谅。我想要做的是将一个段落和一个标题从一个外部 HTML 页面导入到另一个 HTML 页面,这可以用 JavaScript 实现吗?如果是,你能告诉我在哪里可以找到正确的信息。

将要完成导入的页面。

  <ul>
<li>
<h3>Header imported form page 1</h3>
<p>Paragraph imported from page 1</p>
</li>

<li>
<h3>Header imported form page 2</h3>
<p>Paragraph imported from page 2</p>
</li>
</ul>

外页1

  <h3>Header in page 1</h3>
<p>Paragraph in page 1</p>

外部页面 2

  <h3>Header in page 2</h3>
<p>Paragraph in page 2</p>

我搜索了一下,但我发现的大多数帖子都是导入完整的 HTML 页面。

仅供引用 - 我无法使用 PHP,因为我无权访问服务器。

谢谢

最佳答案

您可以使用 jQuery load()方法。

The .load() method, unlike $.get(), allows us to specify a portion of the remote document to be inserted. This is achieved with a special syntax for the url parameter. If one or more space characters are included in the string, the portion of the string following the first space is assumed to be a jQuery selector that determines the content to be loaded.

例如:

 $( "#result" ).load( "ajax/test.html #container" );

When this method executes, it retrieves the content of ajax/test.html, but then jQuery parses the returned document to find the element with an ID of container. This element, along with its contents, is inserted into the element with an ID of result, and the rest of the retrieved document is discarded.

关于javascript - 使用 Javascript 将段落从外部 HTML 页面插入到另一个 HTML 页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26388789/

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