我使用php進行提交後處理,但這裏我想在提交表單前將圖片上傳大小限制爲20kb。在這裏,我試圖在不同的領域逐個上傳3張圖片。需要這個在客戶端使用jquery將圖片上傳大小限制爲20kb
幫忙,謝謝
user.php的
<input type="file" text-align="right" class="filestyle" name="p1" id="p1" data-size="sm" data-input="false" required/>
<input type="file" text-align="right" class="filestyle" name="p2" id="p2" data-size="sm" data-input="false" required/>
<input type="file" text-align="right" class="filestyle" name="p3" id="p3" data-size="sm" data-input="false" required/>
腳本 我在這裏查看該文件的大小
$('#p1').bind('change', function() {
alert('This file size is: ' + this.files[0].size/1024/1024 + "MB");
});
如何限制大小點擊提交按鈕之前的圖片
您的問題回答了下面的鏈接:http://stackoverflow.com/questions/1601455/how-to-check-file-input-size-with-jquery#answer-3937404 –