在模式框页面修改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>