我想知道图片多选怎么弄,求demo,各位大神求解```javascript
// 添加文件
var index=1;
function appendFile(p){
var fe=document.getElementById("files");
var li=document.createElement("li");
var n=p.substr(p.lastIndexOf('/')+1);
li.innerText=n;
fe.appendChild(li);
files.push({name:"uploadkey"+index,path:p});
index++;
empty.style.display="none";
}
我多选以后,var n那句会报错,怎么解决
0 个回复