HTML:
         <div class="container iden_top">
                <ul>
                    <li>
                        <p class='iden_add_name'>应用标识1</p>
                        <span class="iden_top_button"></span>
                        <div class="iden_top_dete"></div>
                    </li>
                </ul>
                <span class="iden_add">+</span>
            </div>

    <div class="data_z_create_box">
                <div class="create_z_create_box_top">
                    <span class="data_z_create_box_top_title"></span>
                    <div class="create_z_create_box_top_close">X</div>
                </div>
                <div class="create_z_create_box_center">
                    <!--<div class="data_tips">
                    </div>-->
                    <div class="data_input">
                        <ul>
                            <li>
                                <!--<span class="data_input_title">应用标识:</span>
                                <span class="data_input_input"><input type="text" placeholder="应用标识1"></span>-->
                            </li>
                        </ul>
                    </div>
                </div>
                <div class="create_z_create_box_button">
                    <button class="create_z_create_box_center_quxiao">取消</button>
                    <button class="create_z_create_box_center_baocun">保存</button>
                    <button class="create_z_create_box_center_queding">确定</button>
                </div>
            </div>

CSS:
.iden_top{width: 100%;border-bottom: 1px solid #ccc;height: 37px; line-height: 35px;}
.iden_top ul li{height: 37px; line-height: 35px; cursor: pointer;width: auto;padding: 0px 10px; background-color: #eee;float: left;border-radius: 5px 5px 0px 0px;border: 1px solid #ccc;margin-bottom: -1px; }
.iden_add{float: left;margin-top: -9px;cursor: pointer; display: inline-block;text-align: center;font-size: 25px;width: 40px; height:36px;color: #2B98FC; font-weight: bold; background-color: #eee; border: 1px solid #ccc;border-radius: 5px 5px 0px 0px;}
.iden_top_button{ display: inline-block;width: 20px; height: 20px; background-image: url(../img/xiug.png);background-repeat: no-repeat;background-size: 100%;margin: 7px 0px 0px 5px;float: left;}
.iden_top_dete{float: right; width: 20px; height: 20px; background-image: url(../img/close.png);background-repeat: no-repeat;background-size: 100%;margin: 7px 0px 0px 5px;float: right;}
.iden_add_name{float: left; }

.data_z_create_box{display: none; width: 600px; min-height: 200px; background-color: #fff; border: 1px solid #ccc; border-radius: 5px; position: absolute;z-index:44; top: 10%;left: 50%;margin-left: -300px;box-shadow: 0px 5px 10px #666}
.data_z_create_box_center_quxiao{background-color: #ea5d5b;color: #fff;margin-right:10px; width: auto!important;padding: 0px 10px;}
.data_z_create_box_center_quxiao:hover{background-color: #d2322d;}
.data_tips{padding: 10px; width: 90%; margin: 0px auto; color: #a94442;background-color: #f2dede;border:1px solid #ebccd1;border-radius: 5px;}
.data_input{height: auto;padding:0px 30px;}
.data_input ul li{height: 50px; line-height: 50px;}
.data_input_input input{text-indent: 10px; width:70%; height: 40px; line-height: 40px; border-radius: 5px; border: 1px solid #ccc;}
.data_input_tips{margin-left: 5%;display: none;}
.data_z_create_box_top_title{margin-left: 20px;font-weight: bold;}
.shua{margin-top: 20px;float: left;}
.shua span{display: inline-block;width: 95%; float: right;}
.data_state_buttonl_tips{color: #4CAE4C;font-weight: bold;display: none;}

JS:
$(document).ready(function(e) {
    var $_div = $("<div class='_id_tips'>确认要删除此应用标识吗?</div>")
    var $_span1 = $("<span class='data_input_title'>应用标识:</span><span class='data_input_input'><input type='text' placeholder=''></span>")
    $(".iden_top ul li:eq(0)").css({
        "background-color": "#fff",
        "border-bottom": "1px solid #fff"
    }).children().removeClass("iden_top_dete");
    $(".iden_top ul li:eq(0)").children(".iden_add_name").addClass("ll")
    $(".iden_top_button").click(function() {
        $("#create_z").show()
        $(".data_z_create_box").show(300)
        $(".data_z_create_box_top_title").html("修改应用标识")
        $(".create_z_create_box_center_baocun").show();
        $(".create_z_create_box_center_queding").hide();
        $(".data_input ul li div").remove();
        $(".data_input ul li").append($_span1)
        $(".data_input_input input").val($(this).siblings(".iden_add_name").text())
        $(".create_z_create_box_center_quxiao").click(function() {
            $("#create_z").hide()
            $(".data_z_create_box").hide(300)
            $_span1.remove()
        })
        $(".create_z_create_box_center_baocun").click(function() {
            $("#create_z").hide()
            $(".data_z_create_box").hide(300)
            $(".ll").text($(this).parent().siblings().children().find("input").val())
            $_span1.remove()
        })
    })
    $(".create_z_create_box_top_close").click(function() {
        $("#create_z").hide()
        $(".data_z_create_box").hide(300)
        $_span1.remove()
    })

var a = 2;
    $(".iden_add").click(function() {
        var clis = $(".iden_top ul li").length;
        if(clis <= 4) {
            var $_li = $("<li><p class='iden_add_name'>应用标识<span>" + a + "</span></p><span></span><div></div></li>");
            $(".iden_top ul").append($_li);
            $_li.css({
                "background-color": "#fff",
                "border-bottom": "1px solid #fff"
            }).children("div").addClass("iden_top_dete");
            $_li.children("span").addClass("iden_top_button")
            $_li.siblings().css({
                "background-color": "#eee",
                "border-bottom": "1px solid #ccc"
            }).children("div").removeClass("iden_top_dete");
            $_li.siblings().children("span").removeClass("iden_top_button");
            $_li.children(".iden_add_name").addClass("ll");
            $_li.siblings().children(".iden_add_name").removeClass("ll");

$(".iden_top_dete").click(function() {
                $(this).parent($_li).addClass("qq")
                $("#create_z").show()
                $(".data_z_create_box").show(300)
                $(".data_z_create_box_top_title").html("提示")
                $(".create_z_create_box_center_baocun").hide();
                $(".create_z_create_box_center_queding").show();
                $(".data_input ul li span").remove();
                $(".data_input ul li").append($_div)
            })
            $(".create_z_create_box_center_quxiao").click(function() {
                $("#create_z").hide()
                $(".data_z_create_box").hide(300)
                $_div.remove()
                $(".iden_top ul li").removeClass("qq")
            })
            $(".create_z_create_box_center_queding").click(function() {
                $(".qq").remove()
                $("#create_z").hide()
                $(".data_z_create_box").hide(300)
                $_div.remove()
                $(".iden_top ul li:eq(0)").css({
                    "background-color": "#fff",
                    "border-bottom": "1px solid #fff"
                }).children("span").addClass("iden_top_button")
            })
            $(".iden_top_button").click(function() {
                $("#create_z").show()
                $(".data_z_create_box").show(300)
                $(".data_z_create_box_top_title").html("修改应用标识")
                $(".create_z_create_box_center_baocun").show();
                $(".create_z_create_box_center_queding").hide();
                $(".data_input ul li div").remove();
                $(".data_input ul li").append($_span1)
                $(".data_input_input input").val($(this).siblings(".iden_add_name").text())
                $(".create_z_create_box_center_quxiao").click(function() {
                    $("#create_z").hide()
                    $(".data_z_create_box").hide(300)
                    $_span1.remove()
                })
                $(".create_z_create_box_center_baocun").click(function() {
                    $("#create_z").hide()
                    $(".data_z_create_box").hide(300)
                    $(".ll").text($(this).parent().siblings().children().find("input").val())
                    $_span1.remove()
                })
            })
            $(".create_z_create_box_top_close").click(function() {
                $("#create_z").hide()
                $(".data_z_create_box").hide(300)
                $_span1.remove()
            })
            clis++;
            a++;
        }

$(".iden_top ul li").click(function() {
            $(this).css({
                "background-color": "#fff",
                "border-bottom": "1px solid #fff"
            }).children("div").addClass("iden_top_dete");
            $(this).children("span").addClass("iden_top_button")
            $(this).siblings().css({
                "background-color": "#eee",
                "border-bottom": "1px solid #ccc"
            }).children("div").removeClass("iden_top_dete");
            $(this).siblings().children("span").removeClass("iden_top_button");
            $(".iden_top ul li:eq(0)").children("div").removeClass("iden_top_dete");
            $(this).children(".iden_add_name").addClass("ll");
            $(this).siblings().children(".iden_add_name").removeClass("ll");
        })
    })
})

jQuery增加删除修改tab导航特效的更多相关文章

  1. jQuery 增加 删除 修改select option .

    jQuery获取Select选择的Text和Value: 1. var checkText=jQuery("#select_id").find("option:selec ...

  2. Nodejs之MEAN栈开发(九)---- 用户评论的增加/删除/修改

    由于工作中做实时通信的项目,需要用到Nodejs做通讯转接功能,刚开始接触,很多都不懂,于是我和同事就准备去学习nodejs,结合nodejs之MEAN栈实战书籍<Getting.MEAN.wi ...

  3. 在Javascript操作JSON对象,增加 删除 修改

    在Javascript操作JSON对象,增加删除修改全有的,详情见代码 <script type="text/javascript"> var jsonObj2 = { ...

  4. AutoCad 二次开发 .net 之层表的增加 删除 修改图层颜色 遍历 设置当前层

    AutoCad 二次开发 .net 之层表的增加 删除 修改图层颜色 遍历 设置当前层 AutoCad 二次开发 .net 之层表的增加 删除 修改图层颜色 遍历 设置当前层我理解的图层的作用大概是把 ...

  5. [JavaWeb基础] 004.用JSP + SERVLET 进行简单的增加删除修改

    上一次的文章,我们讲解了如何用JAVA访问MySql数据库,对数据进行增加删除修改查询.那么这次我们把具体的页面的数据库操作结合在一起,进行一次简单的学生信息操作案例. 首先我们创建一个专门用于学生管 ...

  6. ztree树形菜单的增加删除修改和换图标

    首先需要注意一点,如果有研究过树形菜单,就会发现实现删除和修改功能特别简单,但是增加却有一点复杂.造成这个现象是ztree树形菜单的历史遗留问题.大概是之前的版本没有增加这个功能,后来的版本加上了这个 ...

  7. Sql增加,删除,修改列

    1. 查看约束条件 - MySQL: SELECT * FROM information_schema.`TABLE_CONSTRAINTS` where table_name = 'book'; - ...

  8. php后台增加删除修改跳转页面

    第一步 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3. ...

  9. JQuery制作简单的网页导航特效

    使用JQuery中hover()方法,使其根据鼠标的移动简单的改变背景颜色; hover();用于模拟鼠标指针悬停事件,当鼠标指针移动到元素上时,会触发指定的第一个函数,当鼠标指针移除这个元素时,会触 ...

随机推荐

  1. Java再学习——栈(stack)和堆(heap)

    一.内存分配的策略 按照编译原理的观点,程序运行时的内存分配有三种策略,分别是静态的,栈式的,和堆式的. 静态存储分配是指在编译时就能确定每个数据目标在运行时刻的存储空间需求,因而在编译时就可以给他们 ...

  2. T-SQL 之 多表联合更新

    1. sqlite 多表更新方法 UPDATE tA SET col1=tB.col1 FROM tableA tA INNER JOIN tableB tB ON tA.col2=tB.col2 这 ...

  3. C#实现插件式架构的方法

    插件式架构,一种全新的.开放性的.高扩展性的架构体系.插件式架构设计近年来非常流行,基于插件的设计好处很多,把扩展功能从框架中剥离出来,降低了框架的复杂度,让框架更容易实现.扩展功能与框架以一种很松的 ...

  4. 0. SQL Server监控清单

    数据库服务器的监控可大致分为两类: (1) 状态监控:数据库服务器有没有在健康地运行? (2) 性能监控:健康运行的同时,有没有性能问题?可不可以更快些? 一. 服务器 1. 状态监控 (1) 服务器 ...

  5. gcc: error trying to exec 'cc1plus': execvp: no such file or directory

    最近在安装OpenCV cmake的时,出现gcc: error trying to exec 'cc1plus': execvp: no such file or directory的错误. 导致问 ...

  6. 解决IE下z-index的bug

    IE下z-index有很奇葩的BUG,就是z-index级别不生效.解决方案只有在 该元素的父级元素添加 posotion和z-index,就能识别了. element{position:relati ...

  7. hdu 3234 并查集

    虚拟一个根节点n,设其值为0.并且始终保持其为根. #include<map> #include<set> #include<cmath> #include< ...

  8. VS平台工具集版本

    参考:http://blog.csdn.net/hillseas/article/details/47373313 VS从2010之后开始支持使用之前的版本进行编译,可以在工程属性->常规中进行 ...

  9. 碎片化时代:O2O服务成最大趋势

    从86年第一封电子E-Mail发出至今28个年头,中国互联网从单一点对点,点对多,多对多,如今又回归到点对点,从最基础的Mail.黄页应用到基于互动的Search.Blog以及基于满足人类基本需求的沟 ...

  10. 一个Itextsharp 批量添加图片到pdf 方法

    这里我就直接把我的页面贴进来了 using System; using System.Collections.Generic; using System.Web; using System.Web.U ...