摘要: 日期控件正常可弹出,点击返回,设置页面隐藏后,再显示,日期控件不弹出。 // 返回列表 $('#backList').on('click', function () { $('#xxx').hide(); $('#yyyy').show(); $(window).trigger('resize'); 阅读全文
posted @ 2023-06-01 11:12 playforkeeps 阅读(238) 评论(0) 推荐(0)
摘要: // chooseImage.js function updateElementStyle (element, styles) { for (const attrName in styles) { element.style[attrName] = styles[attrName] } } cons 阅读全文
posted @ 2023-06-01 09:08 playforkeeps 阅读(49) 评论(0) 推荐(0)
摘要: function(idCard){ var info = {birthday: '', sex: ''}; info.birthday = idCard.substring(6, 10) + "-" + idCard.substring(10, 12) + "-" + idCard.substrin 阅读全文
posted @ 2023-06-01 09:00 playforkeeps 阅读(27) 评论(0) 推荐(0)
摘要: table 中单元格可点击,数据样式渲染: table.render 的配置项 cols 所在列配置如下: { field: 'name', title: '姓名', width: 120, templet: function (d) { var nameDom = '<a class="table 阅读全文
posted @ 2023-06-01 08:46 playforkeeps 阅读(66) 评论(0) 推荐(0)