javascript - Pourquoi la taille de l'image que j'obtiens ici est-elle NaN?
巴扎黑
巴扎黑 2017-05-19 10:42:49
0
3
511
    <form enctype="multipart/form-data" name="form1">
      <input type="file" name="file">
      <input type="button" value="取得图片的大小" onClick="getSize()">
    </form>
    <img name="pic" alt="在这儿显示图片">
function getSize(){
        size = 0;
        imgURL = form1.file.value;
        imgURLsplice = imgURL.split("\").pop();
        imgURLsplicelocal ="../assets/img/" + imgURLsplice;
        img = new Image();
        img.src = imgURLsplicelocal;
        pic.src = imgURLsplicelocal;
        if (size <= 0){
            size = img.fileSize / 1024;
        }
        alert("图片大小为:" + size + "KB");
    }

巴扎黑
巴扎黑

répondre à tous(3)
世界只因有你

img.fileSize est un nombre et non un caractère

伊谢尔伦

Vous le saurez après avoir jeté un œil au journal img.fileSize.

Ty80
img是个dom类型<img>的东西啊。怎么可能有fileSize这种东西
$("#file")[0].files[0].size才可以有

Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!