在输入文本中输入值后,如何将 html 内容转换为 ms word?
How to convert html content to ms word after I entered value in input text?
我试图在输入值后将 html 内容转换为 Microsoft word (.doc),我已经完成了如何将 html 内容转换为 ms word 但是当我在输入文本,输入的文本不显示在 ms word 上。它只显示 html 文件的默认内容。
请帮助我,我的论文非常需要它,谢谢。这是我的代码:
<form method="post">
<input type="button" value="Add Row" onclick="addRow('dataTable')">
<input type="button" value="Delete Row" onclick="deleteRow('dataTable')">
<table id="dataTable" name="table1" width="350px" border="1">
<tr>
<td><p>table value 1</p></td>
<td><p>table value 2</p></td>
</tr>
</table>
<div align="center">
<input type="text" name = "text" id = "text" align="center"/></br>
<input type="button" id = "back" value="Back" class="button" align = "center" />
<input type="submit" id = "login" name="submit" value="Save" class="button" />
</div>
</form>
这是我的 javascript 代码,用于将 html 转换为 ms 字:
<script type="text/javascript">
$(document).ready(function(){
$("form").submit(function(){
<?php
if(isset($_POST['submit'])){
header("Content-Type: application/vnd.ms-word");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("content-disposition: attachment;filename=test.doc");
}
?>
});
});
</script>
您实际上是在将 php 与 jquery 混合在一起..您可以做的是.. 将表单中的内容发送到文件示例。 info_save.php 您可以在哪里保存您的 php 代码:
<?php
if(isset($_POST['submit'])){
$name = $_POST['name'];
// try saving the $name to the file using sme class library
header("Content-Type: application/vnd.ms-word");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("content-disposition: attachment;filename=test.doc");
}
?>
我试图在输入值后将 html 内容转换为 Microsoft word (.doc),我已经完成了如何将 html 内容转换为 ms word 但是当我在输入文本,输入的文本不显示在 ms word 上。它只显示 html 文件的默认内容。
请帮助我,我的论文非常需要它,谢谢。这是我的代码:
<form method="post">
<input type="button" value="Add Row" onclick="addRow('dataTable')">
<input type="button" value="Delete Row" onclick="deleteRow('dataTable')">
<table id="dataTable" name="table1" width="350px" border="1">
<tr>
<td><p>table value 1</p></td>
<td><p>table value 2</p></td>
</tr>
</table>
<div align="center">
<input type="text" name = "text" id = "text" align="center"/></br>
<input type="button" id = "back" value="Back" class="button" align = "center" />
<input type="submit" id = "login" name="submit" value="Save" class="button" />
</div>
</form>
这是我的 javascript 代码,用于将 html 转换为 ms 字:
<script type="text/javascript">
$(document).ready(function(){
$("form").submit(function(){
<?php
if(isset($_POST['submit'])){
header("Content-Type: application/vnd.ms-word");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("content-disposition: attachment;filename=test.doc");
}
?>
});
});
</script>
您实际上是在将 php 与 jquery 混合在一起..您可以做的是.. 将表单中的内容发送到文件示例。 info_save.php 您可以在哪里保存您的 php 代码:
<?php
if(isset($_POST['submit'])){
$name = $_POST['name'];
// try saving the $name to the file using sme class library
header("Content-Type: application/vnd.ms-word");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("content-disposition: attachment;filename=test.doc");
}
?>