获得意外的令牌ILLEGAL JS错误

时间:2015-03-21 05:08:56

标签: javascript jquery asp.net jquery-ui

当脚本在页面上注册后,我一直收到“Unexpected Token ILLEGAL”错误。

  StringBuilder str = new StringBuilder();
                 str.Append("<script type='text/javascript'> function AnotherFunction(evt) { ");
                str.Append("var xhr = new XMLHttpRequest();");

                str.Append("var data = new FormData();");
                str.Append("var files = $('#FileUpload1').get(0).files;");
                str.Append("for (var i = 0; i < files.length; i++){");
                str.Append("data.append(files[i].name, files[i]);}");
                str.Append("xhr.upload.addEventListener('progress' , function (evt){");
                str.Append("if (evt.lengthComputable) {");
                str.Append(" var progress = Math.round(evt.loaded * 100 / evt.total);");
                str.Append("$('#progressbar').progressbar('value', progress); }}, false);");
                str.Append("  xhr.open('POST', 'Handler.ashx');");
                str.Append("xhr.send(data); $('#progressbar').progressbar({");
                str.Append(" max: 100,change: function (evt, ui){");
                str.Append("$('#progresslabel').text($('#progressbar').progressbar('value') + '%');");
                str.Append(" }, complete: function (evt, ui){");
                str.Append("  $('#progresslabel').text('File upload successful!');' }});");
                str.Append("evt.preventDefault(); }</script>");


                ClientScriptManager cs = Page.ClientScript;
                cs.RegisterStartupScript(this.GetType(), "RefreshParent", str.ToString(), false);

有没有人对如何解决这个问题有所了解?

1 个答案:

答案 0 :(得分:1)

你的倒数第二次str.Append()电话中还有一个'

更改

str.Append(" $('#progresslabel').text('File upload successful!');' }});");

str.Append(" $('#progresslabel').text('File upload successful!'); }});");