function checkImage(){ ? ?var userImage=document.getElementsByName("file"); ? ?var paImage=/.jpg$/ ? ? ? ?if (!userImage.match(paImage)) { ? ? ? ? ? ?alert("照片格式不正確,請重新選擇照片!"); ? ? ? ? ? ?document.getElementsByName("file").focus(); ? ? ? ? ? ?return false; ? ? ? ?} ? ? ? ?else ? ? ? ?{ ? ? ? ? ? ?return true; ? ? ? ?}
用file上傳文件多張圖片,然后檢查圖片格式,只能為jpg格式,可以上傳圖片,可是不能成功驗(yàn)證
追萌
2017-05-05 15:47:34