我目前正在尝试使用谷歌的可视化工具绘制一些动态加载的图形。
我想从 sql 数据库中提取数据。我有一个能够这样做的 php 脚本 ( getnumber.php )。
我试图在我的 javascript 中使用这个 php 脚本来绘制图形。
<html>
<head>
<!--Load the AJAX API-->
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
function drawChart(Z)
{
tmpdata = new google.visualization.DataTable();
datalist.push(tmpdata);
datalist[Z].addColumn('string', 'Complete');
datalist[Z].addRows([['Finished', $.ajax({url:"getnumber.php"})], ['Incomplete', 10]]);
.
.
.
}
window.setInterval("drawChart()", 1000);
</script>
我意识到 $.ajax 的这种使用是完全错误的,但我很难过!