0

アップロード コントロールがあり、アップロードされたファイルが javascript のように前面で 32 ビットか 64 ビットかを検証する必要があります。

これを達成する方法はありますか?

4

1 に答える 1

0

これはjqueryを使用した簡単な方法です

$('#test').bind('change', function() {

  //this.files[0].size gets the size of your file.
  alert(this.files[0].size);

});

次のように、ページの head タグに最新の jquery を含める必要があります。

<script src="http://code.jquery.com/jquery-latest.js"></script>

以下は、アップロード時にサイズを表示する入力です

<input type="file" id="test" />

完全なコードは次のとおりです。

<html>
    <head>
        <script src="http://code.jquery.com/jquery-latest.js"></script>
    </head>
    <body>
        <input type="file" id="test" />

        <script>
            $('#test').bind('change', function() {
                //this.files[0].size gets the size of your file.
                alert(this.files[0].size);
            });
        </script>
    </body>
</html>

これで、自分で変更できます

于 2013-01-29T14:54:49.577 に答える