从文本加载 javascript 中的 html 文档

发布于 2024-08-28 14:30:42 字数 159 浏览 7 评论 0原文

是否可以将 html 文档加载到 DOM javascript 对象中,以便您可以读取文档中的元素?例如,如果我在服务器上有一个文件 Test.html。 Hello.html页面可以调用javascript代码将Test.html加载到DOM对象中吗?

请告诉我。

谢谢

Is it possible to load an html document into a DOM javascript object so that you can read the elements in the document? For example, if I have a file on the server Test.html. Can the page Hello.html call javascript code to load Test.html into a DOM object?

Please let me know.

Thanks

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

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

发布评论

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

评论(2

爱的故事 2024-09-04 14:30:42

您可以向新页面发出 AJAX 请求并获取 HTML 格式的结果。然后您可以将 HTML 绑定到 DOM 元素。

如果您可以使用像 jQuery 这样的 javascrpt 库,那么有一个 load 方法可以从服务器加载数据并将返回的 HTML 放入 DOM 对象中。

请参阅 .load()

$('yourselector').load('Test.html', function() {
  alert('Load was performed.');
});

You can issue an AJAX request to the new page and get the result as HTML. Then you can bind the HTML to the DOM element.

If you can use a javascrpt library like jQuery there is a load method which loads the data from server and place the returned HTML in a DOM object.

See .load()

$('yourselector').load('Test.html', function() {
  alert('Load was performed.');
});
白鸥掠海 2024-09-04 14:30:42

使用 jQuery:

$("#where_to_paste").load('Test.html');

Using jQuery:

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