gpt4 book ai didi

html - 在网页上的 .txt 文件中显示数据的简单方法?

转载 作者:技术小花猫 更新时间:2023-10-29 11:45:04 26 4
gpt4 key购买 nike

在做一个项目时,其中一个网页会显示一个人员列表(具体来说,是尚未找到的毕业类的人员列表)。我不想在表格中手动更新这些列表,这是一种愚蠢的 Web 1.0 方式,我想获取提交的姓名列表,将它们转换为简单的 .txt 列表,然后在网页上显示该列表。

到目前为止,最简单的方法是使用 iframe 元素...唯一的问题是,我不能(或不知道如何)将任何文本样式应用于 iframe 的内容。我已经在这里发布了我能够完成的示例:http://dongarber.com/test//helpus-iframetest.html

默认字体是 courier,客户可能不会太喜欢它。有没有更好的方法来做到这一点,不需要 ASP.NET 或数据库?

#list  p {
font: arial;
font-size: 14px;
}

...


<p>Help us locate all of our classmates from the High School class of 1961. If you know&nbsp;where they live&nbsp;or their e-mail addresses contact the Reunion Committee.</p>
<p>&nbsp;</p>
<div id="list"><p><iframe src="missingmen.txt" width=200 height=400 frameborder=0 ></iframe></p></div>



</div>

最佳答案

简单的方法:

  • 重命名 missingmen.txtmissingmen.html .
  • missingmen.html 的顶部添加一行:
    <link href="txtstyle.css" rel="stylesheet" type="text/css" />
  • 创建一个名为 txtstyle.css 的文件, 并向其添加如下一行:
    html, body {font-family:Helvetica, Arial, sans-serif}

关于html - 在网页上的 .txt 文件中显示数据的简单方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4642681/

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