最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Why am I getting : Uncaught SyntaxError: Unexpected token ILLEGAL here - Stack Overflow

programmeradmin1浏览0评论

I have this simple script:

    ids="22656"
    url = ".0/users/"+ids+"/timeline";
    console.log( url );
    xmlhttp = new XMLHttpRequest();
    xmlhttp.open(“GET”, url ,true);
    xmlhttp.onreadystatechange=function() {
        if (xmlhttp.readyState==4) {
            console.log( xmlhttp.responseText );
        }
        xmlhttp.send( null );
    };    

But I don't quite understand why I'm getting:

Uncaught SyntaxError: Unexpected token ILLEGAL

Can someone shed some light on this?

I have this simple script:

    ids="22656"
    url = "http://api.stackoverflow./1.0/users/"+ids+"/timeline";
    console.log( url );
    xmlhttp = new XMLHttpRequest();
    xmlhttp.open(“GET”, url ,true);
    xmlhttp.onreadystatechange=function() {
        if (xmlhttp.readyState==4) {
            console.log( xmlhttp.responseText );
        }
        xmlhttp.send( null );
    };    

But I don't quite understand why I'm getting:

Uncaught SyntaxError: Unexpected token ILLEGAL

Can someone shed some light on this?

Share Improve this question asked Mar 2, 2011 at 18:04 OscarRyzOscarRyz 200k119 gold badges397 silver badges574 bronze badges 1
  • Well xmlhttp to a different domain than your own ... is not going to work anyway. Where do you see that error, and when? – Pointy Commented Mar 2, 2011 at 18:13
Add a ment  | 

1 Answer 1

Reset to default 10

The quotes around GET are not proper. You must use standard single or double quotes for strings.

发布评论

评论列表(0)

  1. 暂无评论