iframe式ajax调用示例代码

下雪了,先是小朵小朵的雪花,柳絮般轻轻地飘扬;然后越下越大,一阵紧似一阵。

1.新建 a.html


<!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>

2.新建 b.php

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

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

以上就是iframe式ajax调用示例代码。横跨在你和你的梦想之间的唯一的东西就是奋力拼搏。更多关于iframe式ajax调用示例代码请关注haodaima.com其它相关文章!

标签: iframe ajax