form表单提交无页面刷新(非js)

隐身守侯 提交于 2020-02-03 23:10:07

先看一段代码(PHP例子)

1、表单代码(form.php):

<?php
header("Content-type: text/html; charset=utf8");
?>
<iframe name="testIframeName" style="display:none;"></iframe>
<form target="testIframeName" method="post" action="formAction.php">
<input type="text" name="username"/>
<input type="password" name="password"/>
<input type="submit" value=" 提 交 " />
</form>
2、action代码(formAction.php):
<?php
echo "<script>alert('test....');</script>";
?>
 
OK,上面的代码非常简单,但实现了表单提交无刷新....哪这是为什么呢?

哦~其实很基础的东西......就是form标签的属性问题.....如图:



 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!