gpt4 book ai didi

javascript - 通过 Ajax 获取服务器时间 - 我的代码有什么问题?

转载 作者:行者123 更新时间:2023-11-28 09:08:32 29 4
gpt4 key购买 nike

我做了一个按钮,按下时它会带来服务器时间,,,所以有这个 html 和 js 文件,我希望它从 time.tcl 文件获取时间,请协助我:

1.my 文件使用 html 和 Javascript:

    <html>

<body>

<input value="Get Time" type="button" onclick='JavaScript:showCurrentTime()' name="GetTime">
<div id="result" align="center"></div>

<script language="Javascript">

function showCurrentTime()
{
var xmlhttp;

if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject(“Microsoft.XMLHTTP”);
}

var xmlhttp;

if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest(); } else {// code for IE6, IE5
xmlhttp=new ActiveXObject(“Microsoft.XMLHTTP”);}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("result").innerHTML=xmlhttp.responseText;
}

xmlhttp.open(“GET”,”time.tcl”,true);

</script>

</body>
</html>

2.我的time.tcl文件:

    set now [clock seconds]
# print default-formatted time
puts [clock format $now]
# print custom formatted time
set fmt "Today is day %j of the current year."
puts [clock format $now -format $fmt]

set today [clock seconds]
set fmt "%Y-%m-%d"
puts "The current date is [clock format $today -format $fmt]."

最佳答案

我不认为开放函数中的这些引号“”是有效的,语义

您是否尝试过更换

xmlhttp.open(“GET”,”time.tcl”,true);

xmlhttp.open("GET","time.tcl",true);

关于javascript - 通过 Ajax 获取服务器时间 - 我的代码有什么问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16589777/

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