将 js 变量中的 XML 发送到 FusionCharts
嗨,我有这个 php 代码,它以字符串中的 xml 数据结束,然后我使用 onClick 将其发送到 js 函数,
$strXML = "<chart><set label='B' value='12' /><set label='C' value='10'/></chart>"
<td align='right' onClick='drawchart($strXML)' >£ $totalcost </td>
但是当它到达我的 js 函数时,它不起作用并且数据已损坏
function drawchart(dataX) {
var chart1 = new FusionCharts("../charts/Pie3D.swf", "chart1Id", "400", "300", "0", "1");
chart1.setDataXML(dataX);
chart1.render("chart1div");
}
任何人都可以告诉我如何通过 js 变量正确发送 xml 数据?
谢谢
Hi I have this php code which ends up with xml data in a string, I then use onClick to send it to a js function
$strXML = "<chart><set label='B' value='12' /><set label='C' value='10'/></chart>"
<td align='right' onClick='drawchart($strXML)' >£ $totalcost </td>
However when it gets to my js function it does not work and the data is corrupt
function drawchart(dataX) {
var chart1 = new FusionCharts("../charts/Pie3D.swf", "chart1Id", "400", "300", "0", "1");
chart1.setDataXML(dataX);
chart1.render("chart1div");
}
Can anyone tell me how to correctly send the xml data via a js variable ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在我看来,你正在混合 js 和 php。我想说您需要引用数据:
此外,您可能应该需要转义所有 XML 数据以避免损坏。
Looks to me like you are getting mixed js and php. I'd say you need to quote the data:
Also, you should probably need to escape all that XML data to avoid the corruption.