本文实例讲述了php的无刷新操作实现方法。分享给大家供大家参考,具体如下:
方法一:
我们通过http的204状态码,页面不跳转。
1.html代码如下:
<!doctype html><html lang="zh-cn"><head> <meta chart="utf-8"> <title></title></head&speak的过去式gt;<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 chart="utf-8"> <title></title></head><body> <input type="button" value="投票" id="addbtn" /> <div id="request">焦恩俊白玉堂;</dic21怎么算v></body><script type=""> var addbtn = document.getelementbyid("addbtn"); addbtn.onclick = function() { //创建img标签 var img = document.createelement("img"); //设置标签src属性 img.tattribute("src", "add.php"); document.createelement("request").appendchild(img); };</script></html>
方法三:
利用css,javascript的加载特性,完成请求,原理与img加载一样。
方法四:
利用iframe的特性
2.html代码如下:
<!doctype html><html lang="zh-cn"><head> <meta chart="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>";} el { 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上传文件成为可能。)
本文发布于:2023-04-08 15:48:49,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/7fce63f0d26f2642ae6e3e8f9e8d298c.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:php的无刷新操作实现方法分析.doc
本文 PDF 下载地址:php的无刷新操作实现方法分析.pdf
留言与评论(共有 0 条评论) |