var inputsize = 0; $("#userfile_item input").bind('change', function () { inputsize = this.files[0].size; if (inputsize > 20971520) { alert('ファイルサイズが20Mを超えています。'); } }); /*お問い合わせフォーム値をクリア*/ $(function () { // アップロードするファイルを選択 $('input[type=file]').change(function () { $('#clear').show(); }); // ユーザエージェント var ua = navigator.userAgent; // ファイル参照をクリア $('#clear').click(function () { $('input[type=file]').val(''); // IE バージョン判定 10以下 if (ua.match(/MSIE\s(7|8|9|10)\./i)) { $('#userfile_item').html(''); } }); });