0

我有一个 XmlHttpRequest,它在函数外部时可以工作,如果我把它放在里面,我会得到第 94 行Uncaught SyntaxError: Unexpected token var .

我的第 94 行是var xmlhttp;

我有谷歌,看看它应该工作的其他功能?

有任何想法吗 ?这就是我现在所拥有的。

function run(){
readXml();
}

function readXML{

var xmlhttp;
xmlhttp=new XMLHttpRequest();
xmlhttp.open("get", 'xml/stickers.xml', false);
xmlhttp.send();
var myXML = xmlhttp.responseXML;
stickers = myXML.getElementsByTagName("sticker");
for( i = 0; i<stickers.length; i++){

var idNod =  (stickers[i].getElementsByTagName("id")[0].childNodes[0].nodeValue); /*Get the ID*/
var id = idNod;
var textNod = (stickers[i].getElementsByTagName("text")[0].childNodes[0].nodeValue); /* Text*/
add_sticker(textNod);  /*Call creator function*/

var Xnod =  (stickers[i].getElementsByTagName("x")[0].childNodes[0].nodeValue)+'px';      /*Get the x position Add PX for pixel*/
var Ynod =  (stickers[i].getElementsByTagName("y")[0].childNodes[0].nodeValue)+'px';     /*Get the y position*/
var Znod =  (stickers[i].getElementsByTagName("z")[0].childNodes[0].nodeValue);     /*Get the y position*/
//console.log(Ynod)
//console.log(Xnod)

document.getElementById(id).style.top=Ynod;   /* Style the position if the div. well done */
document.getElementById(id).style.left=Xnod;
document.getElementById(id).style.zIndex=Znod;

} }
4

2 回答 2

4

你忘记了()

function readXML() {
// Here --------^
于 2013-03-25T09:04:58.173 回答
3

您在函数声明中缺少 ()

function readXML() {

  var xmlhttp;
  ...
于 2013-03-25T09:06:28.680 回答