php的无刷新操作实现方法分析
程序员文章站
2022-11-23 19:06:54
本文实例讲述了php的无刷新操作实现方法。分享给大家供大家参考,具体如下:方法一:我们通过http的204状态码,页面不跳转。1.html代码如下:
本文实例讲述了php的无刷新操作实现方法。分享给大家供大家参考,具体如下:
方法一:
我们通过http的204状态码,页面不跳转。
1.html代码如下:
<!doctype html> <html lang="zh-cn"> <head> <meta charset="utf-8"> <title></title> </head> <body> <a href="./add.php" rel="external nofollow" >投票</a> </body> </html>
add.php代码如下:
<?php $num = file_get_contents('./num.txt'); $num = intval($num) + 1; file_put_contents('./num.txt', $num); header('http/1.1 204 no content');
方法二:
利用图片加载的特性,来完成请求。
<!doctype html> <html lang="zh-cn"> <head> <meta charset="utf-8"> <title></title> </head> <body> <input type="button" value="投票" id="addbtn" /> <div id="request"></div> </body> <script type=""> var addbtn = document.getelementbyid("addbtn"); addbtn.onclick = function() { //创建img标签 var img = document.createelement("img"); //设置标签src属性 img.setattribute("src", "add.php"); document.createelement("request").appendchild(img); }; </script> </html>
方法三:
利用css,javascript的加载特性,完成请求,原理与img加载一样。
方法四:
利用iframe的特性
2.html代码如下:
<!doctype html> <html lang="zh-cn"> <head> <meta charset="utf-8"> <title></title> </head> <body> <form action="ret.php" method="post" target="request"> 用户名:<input type="text" name="uname" value="" /> 密码:<input type="password" name="upwd" value="" /> <input type="submit" name="submit" value="提交" /> </form> <iframe width="0" height="0" frameborder="0" name="request"></iframe> <div id="result"></div> </body> </html>
ret.php代码如下:
<?php $uname = !empty($_post['uname']) ? $_post['uname'] : ''; $upwd = !empty($_post['upwd']) ? $_post['upwd'] : ''; if($uname == 'admin' && $upwd == '123456') { echo "<script>parent.document.getelementbyid('result').innerhtml='ok';</script>"; } else { echo "<script>parent.document.getelementbyid('result').innerhtml='no';</script>"; }
我们通过设置form提交的target到iframe,使表单无跳转。
ajax能实现文件上传吗?
分析,文件上传,是需要客户端把文件内容发送到服务器,也就是xhr对象在post数据时,把文件内容也发送给服务器。
也就是xhr对象能够获取你要上传的文件内容,但是出于安全的考虑,js是无法获取本地文件内容的。
ajax插件是如何实现文件上传的?
1、iframe
2、flash实现,如swfupload
3、html5 (添加了文件读取api,使ajax上传文件成为可能。)
上一篇: enote笔记语言(3)(ver0.3)