手機站彈起鍵盤遮擋輸入框(獵豹等部分瀏覽器)
var inputBug=function(){
$('input[type="text"]').on('click', function () {
var target = this;
setTimeout(function(){
target.scrollIntoViewIfNeeded();
},400);
});
inputBug();
複製程式碼
IE和IOS日期格式NaN
- IE和蘋果手機不認xx-xx-xx格式的日期,轉化成xx/xx/xx
eg(2019-05-05 13:26=>2019/05/05 13:26):
var arr = date.split(/[-: \/]/),
date = new Date(arr[0], arr[1]-1, arr[2], arr[3], arr[4], arr[5]);
複製程式碼
去掉文字中的html標籤
html = html.replace(/<[^>]+>/g,"");
複製程式碼