在网页上嵌入 XLS 文件

发布于 2024-11-27 23:50:03 字数 103 浏览 1 评论 0原文

我有很多 XLS 文件,我想将其嵌入到网页上。

我怎样才能动态地做到这一点?我只想提供 XLS 文件的位置并查看网页上的内容

我可以自由使用 PHP / ASP

I am having many XLS files and i want to embed that on a webpage.

How can i do this Dynamically ? I just want to provide the location to the XLS file and see the Content on the webpage

I am free to use both PHP / ASP

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

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

发布评论

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

评论(1

幻想少年梦 2024-12-04 23:50:03

您可以使用 HTML 元素,如下所示:

<object data="document.xls" type="application/vnd.ms-excel">
You don't have an plugin for Excel documents.
<a href="document.xls">Download the file</a>.
</object>

You can embed the excel file with the HTML <object> element, like this:

<object data="document.xls" type="application/vnd.ms-excel">
You don't have an plugin for Excel documents.
<a href="document.xls">Download the file</a>.
</object>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文