首页 > 其他 > 详细

iframe式ajax调用示例

时间:2014-05-16 08:46:54      阅读:353      评论:0      收藏:0      [点我收藏+]

1.新建 a.html 

bubuko.com,布布扣
<!doctype html> 
<html> 
<head> 
<meta charset=‘utf-8‘> 
<title>iframe式ajax调用</title> 
</head> 
<body> 
<form action=‘b.php‘ method=‘post‘ name=‘‘ id=‘‘ target=‘formTarget‘> 
<input type=‘text‘ name=‘username‘ id=‘‘ placeholder=‘‘ value=‘‘ /> 
<input type=‘submit‘ name=‘‘ value=‘提交‘ /> 
<span id=‘msg‘></span> 
</form> 
<iframe src=‘‘ name=‘formTarget‘ id=‘formTarget‘ style=‘display:none‘></iframe> 
</body> 
</html> 
bubuko.com,布布扣

2.新建 b.php 

bubuko.com,布布扣
<?php 
echo " 
<script> 
parent.document.getElementById(‘msg‘).innerHTML = ‘iframe式ajax调用成功!‘; 
alert(‘您输入的是:{$_POST[‘username‘]}‘); 
window.setTimeout(function(){ 
parent.window.location.reload(); 
},3000); 
</script> 
bubuko.com,布布扣

3.访问: http://localhost/a.html 

效果如图 
bubuko.com,布布扣 

iframe式ajax调用示例,布布扣,bubuko.com

iframe式ajax调用示例

原文:http://www.cnblogs.com/ranzige/p/3725879.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!