DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> AJAX入門 >> AJAX基礎知識 >> iframe式ajax調用示例代碼
iframe式ajax調用示例代碼
編輯: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

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved