溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

關(guān)于Layui時(shí)間選擇框的實(shí)現(xiàn)代碼

發(fā)布時(shí)間:2020-04-30 09:39:08 來(lái)源:億速云 閱讀:822 作者:小新 欄目:web開(kāi)發(fā)

今天小編給大家分享的是關(guān)于Layui時(shí)間選擇框的實(shí)現(xiàn)代碼,相信很多人都不太了解,為了讓大家更加了解Layui時(shí)間選擇框,所以給大家總結(jié)了以下內(nèi)容,一起往下看吧。一定會(huì)有所收獲的哦。

Layui中 時(shí)間格式的輸入框:

html代碼:

<div class="layui-inline" style="width: fit-content;">
     <label class="layui-form-label" style="width: fit-content;">選擇日期:</label>
     <div class="layui-input-inline" style="width: 150px">
         <input type="text" name="beginDate" id="beginDate" lay-verify="datetime" class="layui-input">
     </div>
     --
     <div class="layui-form-mid">-</div>
         <div class="layui-input-inline" style="width: 150px">
         <input type="text" name="endDate" id="endDate" lay-verify="datetime" class="layui-input">
     </div>
</div>

js代碼:

layui.use(['layer', 'form', 'table', 'laydate'], function () {
    var layer = layui.layer,
                $ = layui.jquery,
                form = layui.form,
                laydate = layui.laydate,
                table = layui.table;
 
    var beginDate = laydate.render({//渲染開(kāi)始時(shí)間選擇
        elem: '#beginDate', //通過(guò)id綁定html中插入的start
        type: 'datetime',
        max: "2099-12-31 23:59:59",//設(shè)置一個(gè)默認(rèn)最大值
        done: function (value, dates) {
                endDate.config.min = {
                    year: dates.year,
                    month: dates.month - 1, //關(guān)鍵
                    date: dates.date,
                    hours: dates.hours,
                    minutes: dates.minutes,
                    seconds: dates.seconds
                };
        }
    });
    var endDate = laydate.render({//渲染結(jié)束時(shí)間選擇
        elem: '#endDate',//通過(guò)id綁定html中插入的end
        type: 'datetime',
        min: "1970-1-1 00:00:00",//設(shè)置min默認(rèn)最小值
        done: function (value, dates) {
                beginDate.config.max = {
                    year: dates.year,
                    month: dates.month - 1,//關(guān)鍵
                    date: dates.date,
                    hours: dates.hours,
                    minutes: dates.minutes,
                    seconds: dates.seconds
                }
        }
    });
});

關(guān)于Layui時(shí)間選擇框的實(shí)現(xiàn)代碼

elem: '#endDate'  綁定元素;

type: 'datetime'  選擇類(lèi)型:

關(guān)于Layui時(shí)間選擇框的實(shí)現(xiàn)代碼

max: "2099-12-31 23:59:59"  設(shè)置默認(rèn)最大值

min: "1970-1-1 00:00:00"  設(shè)置默認(rèn)最小值

done: function (value, dates) {
                endDate.config.min = {
                    year: dates.year,
                    month: dates.month - 1, //關(guān)鍵
                    date: dates.date,
                    hours: dates.hours,
                    minutes: dates.minutes,
                    seconds: dates.seconds
                };
            }

這個(gè)是為了選擇開(kāi)始時(shí)間后,結(jié)束時(shí)間必須大于等于開(kāi)始時(shí)間;

關(guān)于關(guān)于Layui時(shí)間選擇框的實(shí)現(xiàn)代碼就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的參考價(jià)值,可以學(xué)以致用。如果喜歡本篇文章,不妨把它分享出去讓更多的人看到。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI