jQuery MiniUI
标题:
什么输入框都会出问题
[打印本页]
作者:
onlybigroc
时间:
2020-1-17 11:23:23
标题:
什么输入框都会出问题
我就是存了一个字符串的日期备注 ,页面展示就是有问题
[attach]12694[/attach]
作者:
dforce
时间:
2020-1-17 17:26:54
yyyy-MM-dd HH:mm:ss格式的字符串经过mini.decode会自动解析成date
如果要禁掉,只能改写mini.decode方法了
mini.decode = function (json) {
var re = /[\"\'](\d{4})-(\d{1,2})-(\d{1,2})[T](\d{1,2})
\d{1,2})
\d{1,2})(\.*\d*)[\"\']/g;
json = json.replace(re, "new Date($1,$2-1,$3,$4,$5,$6)");
return eval('(' + json + ')');
}
欢迎光临 jQuery MiniUI (http://miniui.com/discuss/)
Powered by Discuz! X2