码迷,mamicode.com
首页 > 其他好文 > 详细

其他无刷新技术

时间:2015-09-03 18:00:25      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

其他无刷新技术

其他无刷新技术

利用 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>

其他无刷新技术

标签:

原文地址:http://www.cnblogs.com/sunznx/p/4780381.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!