chengkun
2025-04-18 1bb985f32f2efe0f9dd69f3cf29a1c809b1cf96d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<body style="padding:0px;margin:0px;">
    <div style="margin:0px;padding:0px;font-size:12px;">
        <form action="" method="post" enctype="multipart/form-data" name="upimg" onsubmit="return CheckPost();">
            <input type="file" name="file" id="file" style="height:30px;" value="" />
            <input type="submit" name="subuppic" id="button" value="上传" style="height:30px;" />
            <input name="upload" type="hidden" id="upload" value="upload" />
            <input type="hidden" name="MAX_FILE_SIZE" value="3000000" />
        </form>
    </div>
    <script>
        function CheckPost() {
            if (upimg.file.value == "") {
                layer.msg('请选择图片!', 2, 8);
                upimg.file.focus();
                return false;
            }
        }
    </script>
</body>