我更新了信息,以便您更好地理解:
当用户在 IE 中提交表单时,我有一个带有 PHP 表单的 iframe,它似乎没有发布数据。它适用于 Firefox 和 Chrome,但不适用于 IE 7、8 和 10。
发生的情况是,当我们在 IE、Firefox、Chrome 和 Safari 的服务器上测试 iframe php 表单时,它工作正常,但是当客户端将代码上传到他们的服务器并测试时,它在 IE 上对他们不起作用。奇怪的是我可以在他们的服务器上测试 iframe php 表单,它在所有使用 Windows 7 和 XP 的浏览器上都能正常工作。客户端在 Windows 7 和 XP 的 IE7、8、10 中测试 iframe php 代码。
还有一件重要的事情要知道。iframe html 页面仍然托管在我们的服务器上,因为客户端不在他们的服务器上使用 php。
这是 iframe 标记
<iframe id="iframe" frameborder="0" src="FullURL/reportBuilderForm.html"></iframe>
这是 iframe 代码:
<!doctype html>
<!--[if IE 7]><html class="ie7" lang="en"><![endif]-->
<!--[if IE 8]><html class="ie8" lang="en"><![endif]-->
<!--[if gt IE 8]><!--><html lang="en"><!--<![endif]-->
<link rel="stylesheet" href="styles.css" type="text/css" media="screen" />
<head>
<meta charset="utf-8" />
<title>Website</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body id="reportForm">
<div class="row">
<form onsubmit="" name="report_form" id="report_form" action="generatePDF.php" method="POST" target="_blank">
<div class="sixcol">
<label class="blue">
<input type="checkbox" name="leadership" id="leadership" class="noMargin"/>
Leadership — Chairman's Messages</label>
<br>
<br>
<label class="blue">
<input type="checkbox" name="company" id="company" class="noMargin"/>
Company</label>
<br>
<br>
<label class="blue">
<input type="checkbox" name="performance" id="performance" class="noMargin"/>
Performance</label>
<br>
<br>
<label class="blue">
<input type="checkbox" name="solutions" id="solutions" class="noMargin"/>
Solutions</label>
<br>
<br>
</div>
<div class="sixcol last">
<label class="blue">
<input type="checkbox" name="relationships" id="relationships" class="noMargin"/>
Relationships</label>
<br>
<br>
<label class="blue">
<input type="checkbox" name="culture" id="culture" class="noMargin"/>
Culture</label>
<br>
<br>
<label class="blue">
<input type="checkbox" name="responsibility" id="responsibility" class="noMargin"/>
Responsibility</label>
<br>
<br>
<label class="blue">
<input type="checkbox" name="leadershipBoard" id="leadershipBoard" class="noMargin"/>
Leadership — Board & Sr. Management</label>
<br>
<br>
</div>
<div class="clear"></div>
<hr />
<input name="generateReportBtn" class="generateBtn" type="submit" tabindex="4" value="generate PDF" id="submit"/>
</form>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js" type="text/javascript"></script>
</body>
</html>