仿百度文库文档上传页面的多级联动分类选择器

简介: 仿百度文库文档上传页面的多级联动分类选择器 下载地址:http://download.csdn.net/detail/testcs_dn/6848547,下载后评论,积分会返还的。 最终效果图: 使用示例代码: category$(document).

仿百度文库文档上传页面的多级联动分类选择器

下载地址:http://download.csdn.net/detail/testcs_dn/6848547,下载后评论,积分会返还的。

最终效果图:





使用示例代码:

<!DOCTYPE html>
<html>
<head>
    <title>category</title>
</head>
<script type="text/javascript" src="jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="images/categorySourceData.js"></script>
<script type="text/javascript" src="category.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
    //创建一个新的分类选择器
    //可选择配置信息,默认值,说明:
    //sourceData:{ list:[] },                           //array:分类数据源,格式参考:images/categorySourceData.js
    //button:"span_button",                             //id:单击此按钮弹出分类选择层
    //buttonIcon:"b_buttonIcon",                        //id:按钮图标元素
    //textView:"span_textView",                         //id:选择的分类名称在这里显示
    //textDefault:"\u8BF7\u9009\u62E9\u5206\u7C7B",     //string:没有选择分类时的提示文字
    //popLayout:"div_popLayout",                        //id:分类选择层
    //cateView:"ul_cateView",                           //id:分类列表容器
    //onChange:null,                                    //event:当用户选中最后一级节点时触发
    //onSelect:null                                     //event:当用户单击一个分类时触发,此事件在onChange之前触发
    var category1 = new category({ sourceData: categorySourceData, onSelect: function () {
            category1.SetCategoryText();
        },
        onChange: function (cid, level, text) {
            //可以通过selectItems属性当前选中的分类信息
            //selectItems属性示例:[{ cid: 1, level:1, text:'教育专区' }, { cid: 11, level:2, text:'外语学习'}];
            var selectCids = "";
            for (var i = 0; i < category1.selectItems.length; i++) {
                if (i == 0) {
                    selectCids = category1.selectItems[i].cid;
                } else {
                    selectCids += "," + category1.selectItems[i].cid;
                }
            }
            $("#divResult").text("您选择的分类编号为:" + selectCids);
        }
    });

    //可以通过设置selectItems属性,设定初始选项
    category1.selectItems = [{ cid: 1 }, { cid: 11}];

    //设置完成后通过load方法加载
    category1.load();
    });
</script>
<body>
<!-- 分类选择代码开始 -->
<!-- 为防止样式被覆盖,这里全部使用行内样式 -->
    <div style="position: relative; z-index: 3; margin: 0;
        padding: 0; display: block; color: #333; font: 12px/1.333 arial,helvetica,clean;">
        <span id="span_button" tabindex="-1" hidefocus="true" cidstr=""
            cids="" obj="" beforetext="" style="background: url(images/btn_rx_3e2ffb74.png) repeat-x;
            display: inline-block; height: 18px; line-height: 18px; padding: 5px 10px; border: 1px solid #E1E1E1;
            cursor: pointer; outline: 0;"><span id="span_textView" style="_position: relative;
                _top: 2px; line-height: 18px; cursor: pointer; color: #333; font: 12px/1.333 arial,helvetica,clean;">
                请选择分类</span> <b id="b_buttonIcon" style="background: url(images/spr_upload_e112e563.png) no-repeat 0 -267px;
                    display: -moz-inline-stack; display: inline-block; padding: 0; vertical-align: -2px;
                    font-size: 0; line-height: 9999em; overflow: hidden; position: relative; width: 16px;
                    height: 16px; margin-left: 5px!important; font-style: normal; font-weight: normal;
                    cursor: pointer; color: #333;"></b></span>
        <div id="div_popLayout" tabindex="17" hidefocus="true" style="display: none; position: absolute;
            top: 29px; left: 0; z-index: 2; box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1); outline: 0;
            border: 1px solid #AAA; background: #FFF; clip: rect(0 602px 202px 0); height: 171px;
            margin: -1px; overflow: hidden; padding: 0; width: 553px; color: #333; font: 12px / 1.333 arial, helvetica, clean;">
            <div id="wkCategory-TANGRAM$18" style="* zoom: 1; _display: inline;
                display: block; margin: 0; padding: 0;">
                <ul id="ul_cateView" style="list-style: none; margin: 0; padding: 0; display: block;">
                </ul>
            </div>
        </div>
    </div>
<!-- 分类选择代码结束 -->

    <br />
    <br />
    <br />
    <br />
    <div id="divResult"></div>
</body>
</html>


目录
相关文章
|
7月前
|
测试技术 UED
对百度搜索页面设计的测试用例设计
对百度搜索页面设计的测试用例设计
238 0
|
安全
HTML常用表单写一个百度搜索和注册页面
HTML常用表单写一个百度搜索和注册页面
946 0
|
定位技术
百度地图标注maker图标按照分类显示不同的样式
百度地图标注maker图标按照分类显示不同的样式
108 0
|
4月前
|
数据采集 网络协议 索引
Python 爬虫技巧:百度页面重定向的自动跟踪与处理
Python 爬虫技巧:百度页面重定向的自动跟踪与处理
|
移动开发 JavaScript 前端开发
数据可视化大屏百度地图手机端标注开发实战案例解析(jsAPI接口、标注分类图片、文本标签、分类筛选、自适应高度信息弹窗、PHP后端API)
数据可视化大屏百度地图手机端标注开发实战案例解析(jsAPI接口、标注分类图片、文本标签、分类筛选、自适应高度信息弹窗、PHP后端API)
206 0
|
数据可视化 前端开发 搜索推荐
数据可视化大屏百度地图GPS轨迹位置感知状态开发实战案例解析(百度地图jsAPI,包含缩放控件、点线覆盖物、弹窗、标注图标分类功能)
数据可视化大屏百度地图GPS轨迹位置感知状态开发实战案例解析(百度地图jsAPI,包含缩放控件、点线覆盖物、弹窗、标注图标分类功能)
292 0
|
JavaScript 前端开发 BI
百度地图POI多信息点标注开发说明文档(php+layui+mysql+百度javascript API2.0+echarts4.8)
百度地图POI多信息点标注开发说明文档(php+layui+mysql+百度javascript API2.0+echarts4.8)
157 0
|
前端开发
构建一个跳转到百度的搜索页面
构建一个跳转到百度的搜索页面
1201 0
|
计算机视觉 Python
百度飞桨图像分类------第二天(实现手写数字识别)
百度飞桨图像分类------第二天(实现手写数字识别)
百度飞桨图像分类------第二天(实现手写数字识别)
百度统计:页面代码安装状态:代码未生效
百度统计:页面代码安装状态:代码未生效
175 0