gpt4 book ai didi

php - 在 Iframe 中提交 pdf 文档

转载 作者:行者123 更新时间:2023-11-30 05:46:05 25 4
gpt4 key购买 nike

我在 PDF 文档中有一个隐藏的提交表单。我设法将表单插入到 PHP 页面上的 iframe 中。我在 iframe 外创建了一个提交按钮。有什么办法可以链接这两个按钮吗?当我点击 php 页面上的提交按钮时,我想在 iframe 中提交表单。我该怎么做?

这是我的 <iframe> :

<iframe src="http://localhost/UniApp/results/fillsheet.php?recordID=<?php echo $row_DetailRS1['university_ID']; ?>" height="400px" width="750px" id="unipdf"> 

<src>引用此文件 fillsheet.php,代码为:

<?php header('Content-type: application/pdf'); @readfile('fillsheet.pdf'); ?>

最佳答案

尝试这样的事情:

在有提交按钮的页面(包含页面)上添加一个没有源的 iframe 标签,如下所示:

<iframe id="iframeId" />

还有一个用于存储源的隐藏输入:

<input type="hidden" id="iframeSource">http://localhost/UniApp/results/fillsheet.php?recordID=<?php echo $row_DetailRS1['university_ID']; ?></input>

在 iframe 加载的页面上添加如下内容(使用表单的实际 ID,或添加一个):

$(document).ready(function() {
$.('#iframeForm').submit();
});

然后在包含页面的 javascript 中执行此操作(假设您使用的是 jQuery):

var source = $.("#iframeSource").val();

$("#buttonContainingElementId").on("click", "#buttonId", function() {
$.("#iframeId").attr("src", source);
});

关于php - 在 Iframe 中提交 pdf 文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17901714/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com