其他无刷新技术
利用 204 No Content 状态码, 实现无刷新 (204 表示无内容, 无内容浏览器就不会刷新)
<a href="xxx.php">click</a>
$cnt = file_get_contents(‘store.txt‘); $cnt += 1; file_put_contents(‘store.txt‘, $cnt); header(‘HTTP/1.1 204 No Content‘);
利用图片加载
<input type="button" value="click" onclick="vote()"> <script type="text/javascript"> function vote() { var f = document.createElement(‘img‘); f.setAttribute(‘src‘, ‘xxx.php‘); } </script>
利用 iframe
<form action="test.php" method="post" target="here"> <input type="submit" vlaue="send"> </form> <iframe name="here"></iframe>
时间: 2024-10-21 00:23:52