close
<img id="testImg1" src="#" alt="your image" /> <img id="testImg2" src="#" alt="your image" /> <script> $(function () { $('#testImg1').hide(); $('#testImg2').hide(); }); function getImgSize(input, id) { if (input.files && input.files[0]) { var reader = new FileReader(); reader.onload = function (e) { $('#testImg' + id).attr('src', e.target.result); } reader.readAsDataURL(input.files[0]); } } $('#testImg1').on('load', function () { if (($(this).width() == 77) && ($(this).height() == 50)) { } else { $('#<%=FileUpload1.ClientID%>').val(''); alert('※上傳檔案尺寸不符規定1※'); } }) $('#testImg2').on('load', function () { if (($(this).width() == 77) && ($(this).height() == 50)) { } else { $('#<%=FileUpload2.ClientID%>').val(''); alert('※上傳檔案尺寸不符規定2※'); } }) $('#<%=FileUpload1.ClientID%>').change(function () { getImgSize(this, 1); }); $('#<%=FileUpload2.ClientID%>').change(function () { getImgSize(this, 2); }); </script>
全站熱搜
留言列表