使用sui实现的选择控件【性别、日期、省市级联】

使用sui mobile做的选择控件,其中sm.js有修改,增加自定义api,详情请看index.html的注释,不多说了,上代码

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
    <meta name="apple-mobile-web-app-capable" content="no">
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">
    <title>sui mobile</title>
    <link rel="stylesheet" href="sui/sm.css" />
</head>
<body>

    <div class="page">
        <input type="text" class="J-choose-sex" value="男" placeholder="请选择性别" />
        <input type="text" class="J-choose-birth" value="" placeholder="请选择出生日期" />
        <input type="text" class="J-choose-address" value="" placeholder="请选择所在地" />
    </div>
    
    <script type="text/javascript" src="sui/zepto.js"></script>
    <script type="text/javascript" src="sui/sm.js"></script>
    <script type="text/javascript" src="sui/sm-city-picker.js"></script>
    <script type="text/javascript">
    
        /**
         * 因为Zepto和jQuery框架的$冲突,又不想清掉jQuery的重置,所以改用Zepto调用
         * 其中sm.js有修改
         * 其中的dataPicker在官方文件中不存在,是自己加的
         */

        Zepto(function () {
        
            'use strict';
            
            var _$ = Zepto;
            _$(".J-choose-address").cityPicker({
                value: ['四川', '内江', '东兴区']
            });
            
            _$(".J-choose-sex").picker({
                toolbarTemplate: '<header class="bar bar-nav">\
              <button class="button button-link pull-right close-picker">确定</button>\
              <h1 class="title">请选择性别</h1>\
              </header>',
                cols: [
                    {
                        textAlign: 'center',
                        values: ['', '']
                    }
                ]
            });
           
            _$(".J-choose-birth").datePicker({
                value: ["2000", "01", "01"]
            });
            Zepto.init();
        });

    </script>
</body>
</html>

 

Code

引用文件及demo:http://pan.baidu.com/s/1i5tuuzz

转载于:https://www.cnblogs.com/seaton/p/5621339.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值