0

我正在尝试创建一个进度条,xmlhttprequest并且我认为这是不使用表单的好方法,因为我需要xmlhttp.responseText.

为什么这不起作用?

formdata = new FormData();
formdata.append("picture",  document.getElementById('picture').files[0]);
formdata.append("APC_UPLOAD_PROGRESS",  "2");
xmlhttp.open( "POST", 'upload.php', true );
xmlhttp.send(formdata);
4

1 回答 1

0

你忘记了引号:

代替

xmlhttp.open( "POST", upload.php, true );

xmlhttp.open("POST", 'upload.php', true);
于 2012-05-04T07:59:41.317 回答