我想将数据发布到另一个页面中的某个iFrame。
以下是表单部分:
<form action="/client/index.php" target="chat" method="post" role="form" target="_blank">
这是index.php:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
</head>
<frameset cols="350,*" frameborder="0" border="0" framespacing="0">
<frame name="navigation" src="navigation.php" marginheight="0" marginwidth="0" scrolling="false" noresize>
<frameset rows="*" frameborder="0" border="0" framespacing="0">
<frame name="chat" src="chat.php" marginheight="0" marginwidth="0" scrolling="no" noresize>
</frameset>
</frameset>
</html>
问题是chat
中的client/index.php
iFrame没有收到帖子数据,为什么?