我有一个XmlHttpRequest,它在函数外部工作,如果我把它放在里面我得到第94行有Uncaught SyntaxError: Unexpected token var .
我的第94行是var xmlhttp;
我已经google了,看看它应该有效的其他功能吗?
有什么想法吗?这就是我现在所拥有的。
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;
} }
答案 0 :(得分:4)
您忘记了()
:
function readXML() {
// Here --------^
答案 1 :(得分:3)
您缺少函数声明中的()
function readXML() {
var xmlhttp;
...