Размер загружаемого файла JSP - PullRequest
1 голос
/ 30 июня 2011

Ниже приведен мой код загрузки фотографий.Как ограничить размер фотографии?Есть ли у jquery эта функция?Я не могу найти в поиске Google, но сказал, что не могу найти размер файла на стороне клиента?

   $().ready(function() {
            // validate signup form on keyup and submit
            $("#new_product").validate({
                rules: {
                    item_picture: {
                        required: true,
                        accept: "jpg|gif|png"
                    }
                },
                messages: {
                    item_picture: {
                        required:"Please choose an item picture",
                        accept:"File type was invalid"
                    }
                },
                errorElement: "div" //
            });
        });

   <form action="create_auction_item" enctype="multipart/form-data" class="new_product" id="new_product" method="post" style=" padding: 20px;">
 ......

 <tr>
     <th>
         <label for="picture">Item Picture<span style="color:red;">*</span></label>
     </th>
     <td>
         <input  id="item_picture" name="item_picture" size="30" type="file" accept="gif|jpeg|bmp|png|jpg"/>
      </td>
  </tr>

 </form>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...