欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

iframe式ajax調(diào)用示例

 更新時間:2014年02月21日 15:14:47   作者:  
想必大家對ajax調(diào)用有所熟悉,下面為大家介紹下iframe式ajax調(diào)用,需要的朋友可以參考下
1.新建 a.html
復(fù)制代碼 代碼如下:

<!doctype html>
<html>
<head>
<meta charset='utf-8'>
<title>iframe式ajax調(diào)用</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
復(fù)制代碼 代碼如下:

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

3.訪問: http://localhost/a.html

效果如圖
 

相關(guān)文章

最新評論