关于网站后台上传图片时出现的错误
网站后台上传图片时,总是提示"请选择正确的图片格式",我JPG/BMP/GIF/PNG都试过了,都不行,请问哪里出现错误了,以下是代码:<script>functionc...
网站后台上传图片时,总是提示"请选择正确的图片格式",我JPG/BMP/GIF/PNG都试过了,都不行,请问哪里出现错误了,以下是代码: <script> function checksign() { if(document.upload2.file2.value!="") { parent.document.form1.Submit.disabled=true; parent.document.getElementById("pagestate_img_small").innerHTML="<img src='/img/uploading.gif' height=16 width=160>"; return true; } } var img=null; function chksize() { if(img)img.removeNode(true); img=document.createElement("img"); img.style.position="absolute"; img.style.visibility="hidden"; img.width = 0; img.height = 0; img.attachEvent("onreadystatechange",orsc); img.attachEvent("onerror",oe); document.body.insertAdjacentElement("beforeend",img); img.src=document.getElementById("file2").value; } function oe() { alert("您选择的文件不是图片格式!"); document.upload2.reset(); } function orsc() { if(img.readyState!="complete")return false; if (img.fileSize>2048000) { alert("您上传的图片超过了200K,请重新选择!!"); document.upload2.reset(); } }
展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询