当前位置: 代码迷 >> Web前端 >> 方式框中提交表单总是新打开窗口(解决)
  详细解决方案

方式框中提交表单总是新打开窗口(解决)

热度:334   发布时间:2012-11-23 22:54:33.0
模式框中提交表单总是新打开窗口(解决)

在模式框页面修改head元素,在head元素里添加base元素

如下:

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
?? <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
?? <title>项目总结</title>
?? <base target="_self" />
</head>

<body>

此页为模式框页面

<form method="post" action="abc.html">

<input type="text" />

<input type="submit" value="提交" />

</form>

</body>

</html>

  相关解决方案