jsp jquery求大神完善目录,上传新建文件夹,回收站等功能

 我来答
匿名用户
推荐于2016-02-04
展开全部
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>图片上传</title>
    <script src="http://code.jquery.com/jquery-1.11.1.min.js" type="text/javascript"></script>
    <style type="text/css">
        body {font-size: 12px;}
        a {text-decoration: none;color:Black;}
        .hover {color: Blue;font-weight: bold;}
    </style>
</head>
<body>
    <div id="div_content">
        <a href="javascript:;" class="hover">本地图片</a>&nbsp;|&nbsp;<a href="javascript:;">网址获取</a>
    </div>
    <div id="div_local" style="margin-top:30px;">
        <input type="button" id="btn_upload" value="选择图片" />
        <span>大小需小于1M,建议尺寸 640*320px</span>
    </div>
    <div id="div_url" style="display:none; margin-top:30px;">
    <input type="text" id="txt_url" />
    </div>
    <script type="text/javascript">
        $(function () {
            $("#div_content a").eq(0).click(function () {
                $(this).addClass("hover");
                $("#div_url").hide();
                $("#div_local").show();
                $("#div_content a").eq(1).removeClass("hover");
            });
            $("#div_content a").eq(1).click(function () {
                $(this).addClass("hover");
                $("#div_local").hide();
                $("#div_url").show();
                $("#div_content a").eq(0).removeClass("hover");
            });
        });
    </script>
</body>
</html>
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式