我有以下内容:
<!DOCTYPE html>
<html>
<body>
<script>
var t = new Date();
var m = t.getMonth()+1;
var d = t.getDate();
mm = m.toString();
dd = d.toString();
var textfile = mm + dd;
[want to display the text file here]
</script>
</body>
</html>
如何显示名为“textfile”的文本文件?
我有一年中每一天的文本文件。所有这些都是不同的。它们位于服务器上,位于javascript所在的目录中。当有人进入页面时,我希望显示与日期对应的文件。
答案 0 :(得分:1)
如果文件在服务器中可用,请使用
window.location.href = textfile;