zoukankan      html  css  js  c++  java
  • 页面弹窗效果HTML

    <div    style="background-color: #000; height: 100%; 100%; display: none; position: fixed; left: 0px; top: 0px; z-index: 2999;opacity: 0.5;">
    </div>
    <div style="background-color: #FFF; left: 50%; position: fixed; top: 145px; margin-left: -264px;z-index: 3000; display: block;">
    <div id="NewFolderPanel" style="border: 4px solid #335498;  320px; position: relative;display: none; background: #fff; padding: 20px;">
    <h2 style="padding-bottom: 20px; border-bottom: 1px solid gray;">新建文件夹</h2>
    <input type="button" value="关闭窗口" onclick="CloseNewFolderPanel()" style="position: absolute;right: 10px; top: 10px;" />
    <form action="@(Url.Action("NewFolder"))" method="post" enctype="multipart/form-data" style="padding: 10px 0px;">
    <input type="hidden" name="curPath" value="@(ViewBag.Path)"/>请输入文件夹名:<input type="text" id="newfolder" name="newfolder" /><br /><br />点击确定:<input type="submit" value="确定" /></form>
    
    </div>
    <div id="UploadFilePanel" style="border: 4px solid #335498;  320px; position: relative;display: none; background: #fff; padding: 20px;">
    <h2 style="padding-bottom: 20px; border-bottom: 1px solid gray;">上传文件</h2>
    <input type="button" value="关闭窗口" onclick="CloseUploadFilePanel()" style="position: absolute;right: 10px; top: 10px;" />
    <form action="@(Url.Action("UploadFile"))" method="post" enctype="multipart/form-data" style="padding: 10px 0px;">
    <input type="hidden" name="curPath" value="@(ViewBag.Path)"/>
    选择文件:<input type="file" name="file" /><br />
    <br />
    点击上传:<input type="submit" value="上传" />
    </form>
    </div>
    </div>
    View Code
  • 相关阅读:
    对象和接口简单比较
    DevExpress报表开发基本流程
    有关ExecuteNonQuery返回值的分析
    2012年度计划
    小测试:有关++i&&i++,你是不是看晕了
    “PE文件格式”1.9版 完整译文
    .NET中的入口及幕后英雄:MSCorEE.dll(转)
    软件构建过程中的隐喻
    转:地图导出格式,教你如何选择
    推荐几个网站
  • 原文地址:https://www.cnblogs.com/chinaboyzzy/p/5728944.html
Copyright © 2011-2022 走看看