我正在努力将 PDF 转换为 HTML,但客户端没有它。所以我们开始吧。我需要一种方法来告诉内联的 pdf 表单将 POST 提交到 url。诸如此类的东西:
<!-- Inlined PDF -->
<object type="application/pdf" data="http://xxxxxxx" id="pdf_form">
</object>
<!-- Button I add to the page to do a form submit -->
<input type="button" onclick="javascript: DoSubmit();">
<script type="text/javascript">
// Do a POST with the form data here. Either getting the data out of the pdf
// or using ACROBAT's FDF export & http submit to handle this
function DoSubmit() {
// Get 'pdf_form' and tell it to post it's data to a url
}
</script>
我需要它以这种方式工作,因为客户在想要添加新表单时不必向 pdf 添加提交按钮。我正在尝试使系统非常灵活地添加这些表单;因为有很多。
最好的选择是,如果我不需要手动修改 pdf 来使其正常工作。
还有一个工具栏出现,其中包含一个保存按钮。删除该保存按钮或使该保存按钮执行表单提交而不是保存 pdf 文件也很重要。