介绍iframe式ajax调用的内容

来源:爱站网时间:2022-04-22编辑:网友分享
想必大家伙对ajax调用都有所了解,但对于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调用的内容说到这里就结束了,如果你还没看懂,可以来爱站技术频道网站咨询小编,小编一定会为你解答。

上一篇:AJAX和FORM的提交有什么区别

下一篇:ajax异步传输数据可通过json来处理

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载