Layui 前端防止sql注入
1 2
| a.cmsId1 = a.cmsId1.replace(/null|select|update|delete|exec|count|'|"|=|;|>|<|%|-/g,function(d){console.log(d);return '\\\\'+d});
|
时间判断
1 2 3 4 5 6 7
| <label class="layui-form-mid">现场送电时间</label> <div class="layui-input-inline"> <input class="Wdate layui-input planOffStartTime-style pssc-color" id="sceneStartDate" type="text" onclick="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss',startDate:'%y-%M-%d 00:00:00', isShowToday:false,onpicked: active.getSendStartTime})" data-form="formed" autocomplete="off"> </div>
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
| getTOutageStartTime() { if ($("#stopEndDate").val() == "") { return; } if ($("#stopEndDate").val() != "") { if (new Date($("#outageStartTime").val()) >= new Date($("#stopEndDate").val())) { layer.msg('停电结束时间应大于停电开始时间!', { icon: 2, time: 2000 }, function () { $("#outageStartTime").val(""); }); return; } } }, getTOutageEndTime() { if ($("#outageStartTime").val() == "") { return; } if ($("#outageStartTime").val() != "") { if (new Date($("#outageStartTime").val()) >= new Date($("#stopEndDate").val())) { layer.msg('停结束时间应大于停电开始时间!', { icon: 2, time: 2000 }, function () { $("#stopEndDate").val(""); }); return; } } },
|
Welcome to my other publishing channels