1.提交form,action 提交數據,但頁面不跳轉,可使用Iframe簡單方法php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Form提交表單頁面不跳轉</title> </head> <body> <form action="hello.php" method="post" target="id_iframe"> <input type="text" id="input_text" name="input_text"/> <input type="submit" id="sobmit" name="submit" value="提交" /> </form> <iframe id="id_iframe" name="id_iframe" style=""></iframe><!--hello.php頁面返回的數據 顯示在iframe 中-> </body> </html>
2.注意1<form action="hello.php" method="post" target="id_iframe"></from>
中的target
必定是你要指定要顯示返回結果的<iframe id="id_iframe" name="id_iframe" style=""></iframe>
標籤中的name屬性html
3.注意2<iframe id="id_iframe" name="id_iframe" style=""></iframe>
能夠放到body中的任何位置
特別注意能夠放到<form action="hello.php" method="post" target="id_iframe"></from>
中post