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>
arrow
arrow
    全站熱搜
    創作者介紹
    創作者 amychang2014 的頭像
    amychang2014

    工作需要筆記

    amychang2014 發表在 痞客邦 留言(0) 人氣()