我有这样的代码。
在line.php文件中: 在简单的speeking中,我只是在查询此页面时输出一个字符串:
<?php
print("love you")
?>
然后,在b.php中,我使用模板代码bellow(php模板),我有这样的代码 我将调用draw_line_chart函数,此函数将查询line.php以获取输出。
function get_char(product,project){
var lineUrl = 'line.php';
send_http_request(lineUrl,_plot_line);
function _plot_line(request){
;//plot_line(request,product,project) //function to get the line code .
}
}
function send_http_request(url,call_function){
if (window.XMLHttpRequest) { // Mozilla, Safari,...
http_request = new XMLHttpRequest();
if (http_request.overrideMimeType) {
http_request.overrideMimeType('text/xml');
}
} else if (window.ActiveXObject) { // IE
try {
http_request = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
http_request = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e) {}
}
}
if (!http_request) {
alert('Giving up :( Cannot create an XMLHTTP instance');
return false;
}
http_request.onreadystatechange=function(){
if(http_request.readyState == 4){
call_function(http_request);
}
}
http_request.open('GET',url,false);
http_request.send(null);
return http_request;
}
好吧,当它在谷歌浏览器中使用时,它是正确的,但在Firefox中。这是错的。并在错误控制台中,它说syntax error "love you"
答案 0 :(得分:0)
print("love you");
你错过了函数末尾的分号。