- 后段返回数据前端遍历情况
- 后端返回为Map<k,v>类型时,取k方式为 let k in map
- 返回为Object时,取k方式为let k of Object.keys(object)
- 后端返回为List时,遍历方式为let index in list,index为偏移量
- 后端返回为List时,遍历方式为let o of list。o为某元素
- datetimepicker修饰文本控件及监听change事件方式为:
<input type="text" id="recordsDate" readonly style="background: white;height: 40px">
$('#recordsDate').datetimepicker({
format: 'YYYY-MM',
locale: "zh-cn",
ignoreReadonly: true,
defaultDate: moment()
}).on("dp.change", function () {
oTable.ajax.reload();
});
- button取消点击事件
由js增加的事件:KaTeX parse error: Expected 'EOF', got '#' at position 3: ('#̲confirmBtn').un…(“a”).removeAttr(“onclick”);