3

我正在使用 Kendo UI Datawiz 条形图来表示我通过输入框收集并保存到数组中的一些信息。我希望能够在同一页面上提交数据后显示条形图。但是,条形图的代码位于一个单独的 html 文件中,而不是我想要显示它的页面。当我集成两个 html 文件时,事情就搞砸了,所以即使代码在不同的 html 文件中,有没有办法显示图表?

4

1 回答 1

0

你试过iframe吗?

<form target="iframe" action="chart.html">
    .
    .
    .
</form>
<iframe name="iframe" width=100% src="chart.html"></iframe>
于 2012-03-12T07:12:56.200 回答