随便代码记录

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="gbk">
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0">
    <title>Mobiscroll</title>

    <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
    <link href="mobiscroll.custom-2.13.2.min.css" rel="stylesheet" type="text/css" />
    <script src="mobiscroll.custom-2.13.2.min.js" type="text/javascript"></script>

</head>

<body>
<input id="demos" name="scroller" />
    <button class="btn">获取数据</button>

    <script type="text/javascript">
        $(‘.btn‘).on(‘click‘,function(){
            var dateV = $(‘input[name="scroller"]‘).val();
            alert(dateV);
        })

            var now = new Date(),
            year = now.getFullYear(),
            month = now.getMonth();

            $(‘#demos‘).mobiscroll().calendar({
                theme: ‘mobiscroll‘,
                preset: ‘date‘, //日期
                lang: ‘zh‘,
                display: ‘bottom‘,
                counter: true,
                multiSelect: true,
                defaultValue:new Date(),
                setText: ‘确定‘, //确认按钮名称
                cancelText: ‘取消‘,//取消按钮名籍我
                nowText:‘今天‘,
                endYear:2020, //结束年份
                yearText: ‘年‘, monthText: ‘月‘,  dayText: ‘日‘,  //面板中年月日文字
                hourText:‘小时‘,
                selectedValues: [ new Date(year, month, 1), new Date(year, month, 2), new Date(year, month, 10) ]
            }); 

        /**

            var currYear = (new Date()).getFullYear()
                var opt_data = {
                     preset: ‘date‘, //日期
                      theme: ‘android-ics  light‘,  //皮肤其他参数【android-ics light】【android-ics】【ios】【jqm】【sense-ui】【wp light】【wp】
                    display: ‘modal‘, //显示方式
                       mode: ‘mixed‘, //操作方式【scroller】【clickpick】【mixed】
                 dateFormat: ‘yy-mm-dd‘, // 日期格式
                    setText: ‘确定‘, //确认按钮名称
                 cancelText: ‘取消‘,//取消按钮名籍我
                  dateOrder: ‘yymmdd‘, //面板中日期排列格式
                   yearText: ‘年‘, monthText: ‘月‘,  dayText: ‘日‘,  //面板中年月日文字
                    endYear:2020, //结束年份
                    showNow:true,
                    nowText:‘今天‘,
                   hourText:‘小时‘,
                 minuteText:‘分‘,
                   startYear:currYear,
                    display:‘bottom‘,//显示方式【modal】【inline】【bubble】【top】【bottom】
                };
                $("#demos").mobiscroll(opt_data);

         /** $(function(){
            var opt = {
                preset: ‘date‘, //日期
                theme: ‘sense-ui‘, //皮肤样式
                display: ‘modal‘, //显示方式
                mode: ‘scroller‘, //日期选择模式
                dateFormat: ‘yy-mm-dd‘, // 日期格式
                setText: ‘确定‘, //确认按钮名称
                cancelText: ‘取消‘,//取消按钮名籍我
                dateOrder: ‘yymmdd‘, //面板中日期排列格式
                dayText: ‘日‘, monthText: ‘月‘, yearText: ‘年‘, //面板中年月日文字
                endYear:2020 //结束年份
            };
            $("#scroller").mobiscroll(opt).date(opt);*/

        //之前给群里共享发错了。记得之前写过一个,估计丢了。现在重写一个。并完善一下,下面注释部分是上面的参数可以替换改变它的样式
        //希望一起研究插件的朋友加我个人QQ也可以,本人也建个群 291464597 欢迎进群交流。哈哈。这个不能算广告。
        // 直接写参数方法
        //$("#scroller").mobiscroll(opt).date();
        // Shorthand for: $("#scroller").mobiscroll({ preset: ‘date‘ });
        //具体参数定义如下
        //{
        //preset: ‘date‘, //日期类型--datatime,
        //theme: ‘ios‘, //皮肤其他参数【android-ics light】【android-ics】【ios】【jqm】【sense-ui】【sense-ui】【sense-ui】
                                    //【wp light】【wp】
        //mode: "scroller",//操作方式【scroller】【clickpick】【mixed】
        //display: ‘bubble‘, //显示方【modal】【inline】【bubble】【top】【bottom】
        //dateFormat: ‘yyyy-mm-dd‘, // 日期格式
        //setText: ‘确定‘, //确认按钮名称
        //cancelText: ‘清空‘,//取消按钮名籍我
        //dateOrder: ‘yymmdd‘, //面板中日期排列格
        //dayText: ‘日‘,
        //monthText: ‘月‘,
        //yearText: ‘年‘, //面板中年月日文字
        //startYear: (new Date()).getFullYear(), //开始年份
        //endYear: (new Date()).getFullYear() + 9, //结束年份
        //showNow: true,
        //nowText: "明天",  //
        //showOnFocus: false,
        //height: 45,
        //width: 90,
        //rows: 3}
    //});
    </script>
</body>
</html>
时间: 2024-10-08 07:37:06

随便代码记录的相关文章

MVVM 代码记录

  一.XML <Page x:Class="MVVM.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="using:MVVM" xmlns:d="http://schemas

毕业设计代码记录

最近开始搞毕业论文了,亚历山大,记录一点毕业设计需要用的代码 <html>     <head>           <meta charset="utf-8">           <title>颜色插值</title>     </head>    <style>   </style> <body> <script src="http://d3js.org/d

代码记录生活-倒计时

我不会表达我的内心世界,那么我就用代码来记录我的生活,用一行行代码来表达我的心情. 虽然我写的代码都很简单,毕竟我是初学者,以后会慢慢的好的. 那么今天就先上传我昨天写的一个小计时器吧,就只有一个计时器功能,其他的没有. 源码分享地址链接:http://pan.baidu.com/s/1eQcT0A2 密码:4xru 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using

mysql中RAND()随便查询记录效率问题和解决办法分享

在我们做开发的中效率一直是个问题,特别是对于很多大数据量操作,今天我们碰到一个要随机查询数据,一开始我们可能想到最简单的order by rand() 来操作但效率不敢恭维啊 最近由于需要大概研究了一下MYSQL的随机抽取实现方法.举个例子,要从tablename表中随机提取一条记录,大家一般的写法就是:SELECT * FROM tablename ORDER BY RAND() LIMIT 1. 有两个方法可以达成以上效果. 1.新建一个表,里面存着 -5 至 5 之间的数.再利用order

OpenCV学习代码记录——Hough线段检测

很久之前学习过一段时间的OpenCV,当时没有做什么笔记,但是代码都还在,这里把它贴出来做个记录. 代码放在码云上,地址在这里https://gitee.com/solym/OpenCVTest/tree/master/OpenCVTest #include <opencv2/core.hpp> #include <opencv2/highgui.hpp> #include <opencv2/imgproc.hpp> // http://blog.csdn.net/zh

OpenCV学习代码记录——canny边缘检测

很久之前学习过一段时间的OpenCV,当时没有做什么笔记,但是代码都还在,这里把它贴出来做个记录. 代码放在码云上,地址在这里https://gitee.com/solym/OpenCVTest/tree/master/OpenCVTest. #include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp> #include <opencv2/imgproc/imgproc.hpp> // c

OpenCV学习代码记录——轮廓(contour)检测

很久之前学习过一段时间的OpenCV,当时没有做什么笔记,但是代码都还在,这里把它贴出来做个记录. 代码放在码云上,地址在这里https://gitee.com/solym/OpenCVTest/tree/master/OpenCVTest #include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp> #include <opencv2/imgproc/imgproc.hpp> // cv

OpenCV学习代码记录—— Snake轮廓

很久之前学习过一段时间的OpenCV,当时没有做什么笔记,但是代码都还在,这里把它贴出来做个记录. 代码放在码云上,地址在这里https://gitee.com/solym/OpenCVTest/tree/master/OpenCVTest #include <opencv2/core.hpp> #include <opencv2/highgui.hpp> #include <opencv2/imgproc.hpp> #include <opencv2/legac

OpenCV学习代码记录——人脸检测

很久之前学习过一段时间的OpenCV,当时没有做什么笔记,但是代码都还在,这里把它贴出来做个记录. 代码放在码云上,地址在这里https://gitee.com/solym/OpenCVTest/tree/master/OpenCVTest #include <opencv2/core.hpp> #include <opencv2/highgui.hpp> #include <opencv2/objdetect.hpp> #include <opencv2/img