我是html和PHP的新手,但我有一个相当简单的要求。我尝试了许多不同的方法,但都没有满足我的需求。
该页面应执行以下操作:
以下是我目前正在g_test_02.php尝试的内容。问题是当我在浏览器中加载页面时,当它从标题刷新时,即使我没有点击按钮,它也会执行。我可以看到这个查看服务器上的文件。
我做错了什么?
由于
<html>
<body>
<head>
<META HTTP-EQUIV="REFRESH"
CONTENT="30">
</head>
<?PHP
Do some php to display the date-timestamp of a file on the Unix server
?>
Display some html text and a picture
<script>
function myFunction() {
<?php
Do some php to modify files on the server
?>
location.reload();
}
</script>
<button onclick="myFunction()">Verify door</button>
</body>
</html>
答案 0 :(得分:-1)
试试这个:
<html>
<body>
<script>
function myFunction() {
setInterval(function(){alert("Hello")}, 5000);
}
</script>
<button onclick="myFunction()">Verify door</button>
</body>
</html>