https://blog.csdn.net/liangwenli_/article/details/82786713
jsp頁面: <input type="text" class="layui-input test-item" placeholder="審核時間" value="${model.checkDate}" name="checkDate"> (注意:class必須添加 test-item樣式 這是重點,具體去看layui文檔) js代碼: layui.use('laydate', function(){ var laydate = layui.laydate; //同時綁定多個 lay('.test-item').each(function(){ laydate.render({ elem: this ,format:'yyyy-MM-dd HH:mm:ss' ,type:'datetime' ,trigger: 'click' }); }); });