我想使用javascript office api将表对象嵌套在其他表格单元格中。
我看到TableCell对象没有方法insertTable所以我无法通过单元格调用它。 表格的方法insertTable只能接收"之前"和#34;之后"位置 - 因此新的位置将在父表之前或之后插入。
我通过使用以下代码设法通过HTML嵌套表:
body.insertHtml('
<table border="1">
<tr>
<td>Cell1</td><td>Cell2</td>
</tr>
<tr>
<td>
<table border=3 color=black>
<tr><td>10</td><td>20</td><td>30</td></tr</table>
</td>
<td>Cell 4</td>
</tr>
</table>', Word.InsertLocation.start);
有没有办法使用javacript API嵌套表?
谢谢!