我更新了信息,以便您更好地理解:
当用户在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>
答案 0 :(得分:0)
感谢您的评论,但我们最终做了不同的解决方案。我们决定在我们的服务器上托管带有iframe和php表单的页面。