当前位置: 代码迷 >> Java Web开发 >> form表单method=“post”交付为什么路径action还出现在地址栏中
  详细解决方案

form表单method=“post”交付为什么路径action还出现在地址栏中

热度:3337   发布时间:2013-02-25 21:11:43.0
form表单method=“post”提交为什么路径action还出现在地址栏中
我的form表单是这样写的为什么加上了target属性action就出现在了地址栏中?
<form id="login" method="post" action="loginQtAction!login.action" target="_parent">

------解决方案--------------------------------------------------------
target="_parent" 是新打开一个页面了,post不起作用。
如果用 target="_self",post会起作用,我觉得如此,可以去测试看看结果
------解决方案--------------------------------------------------------
主页面使用iframe,然后给它命名一个name属性,form的taiget的值协商iframe的name属性名称就可以,这样就可以提交表单之后刷新了
  相关解决方案