gpt4 book ai didi

javascript - 通过文本文件在 Html 标签中填充文本
转载 作者:太空宇宙 更新时间:2023-11-04 12:51:55 25 4
gpt4 key购买 nike

我正在尝试通过以下方式使用外部文本文件更新选取框标签:-

$(document).ready(function(){
$(".marque").load("update/update.txt");
}

<center><p style="color: rgb(0, 153, 255);font-size: 22px;">Updates</p></center>
<marquee class="marque" direction="up" behavior="scroll" scrollAmount="2">
</marquee>

虽然它在 IE 中工作但在 Google 中不工作。谁能知道为什么会这样?

最佳答案

Although its working in IE but not in Google...

我猜您指的是 Google Chrome。这告诉我你是从文件系统加载你的页面,而不是网络服务器;例如,URL 以 file:// 开头。任何形式的 ajax 都不能在 Chrome 中使用本地加载的页面。如果您从网络服务器加载它,它就会工作。

关于javascript - 通过文本文件在 Html <marquee> 标签中填充文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26104863/

25 4 0