2020年5月29日
摘要: // 1.0 一般形式的函数调用 // 在默认情况下,函数是不会执行的,使用小括号可以激活并执行函数, // 可以传递零个或多个参数,参数之间通过逗号分隔 // 示例1: function f(x,y) { //定义函数 return x * y; //返回值 } console.log(f(f(5 阅读全文
posted @ 2020-05-29 10:39 猪mother 阅读(277) 评论(0) 推荐(0) 编辑
  2020年3月16日
摘要: input标签的常用事件汇总 1.onfocus 当input 获取到焦点时触发 2.onblur 当input失去焦点时触发,注意:这个事件触发的前提是已经获取了焦点再失去焦点的时候才会触发该事件,用于判断标签为空。 3.onchange 当input失去焦点并且它的value值发生变化时触发,个 阅读全文
posted @ 2020-03-16 16:09 猪mother 阅读(682) 评论(0) 推荐(0) 编辑
  2020年3月11日
摘要: 获取时间戳 时间格式为:2017-12-12 12:00:00在苹果上获取时间戳有兼容性问题 需要转换成2017/12/12 12:00:00 才可以正确获取到时间戳 var getTime=function(time){ var myDate = new Date(time); var u = n 阅读全文
posted @ 2020-03-11 11:58 猪mother 阅读(377) 评论(0) 推荐(0) 编辑
摘要: ios系统内部的bug 某些app或者微信网页里,复制手机收到的短信验证码,会触发UITextFieldTextDidChangeNotification监听事件,导致验证码出现了两次,这个应该是ios系统内部的bug. 解决方案 如果input框的type=“text” 或者 type=“pass 阅读全文
posted @ 2020-03-11 11:55 猪mother 阅读(4501) 评论(0) 推荐(0) 编辑
摘要: 背景:移动端H5页面,视口设置<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" /> qq、浏览器打开页面字体大小正常 问题:微信打开页面 阅读全文
posted @ 2020-03-11 11:53 猪mother 阅读(2057) 评论(0) 推荐(0) 编辑
摘要: 一个移动端页面,console页面一直报这个错误,一开始很懵逼。没有任何框架只是jquery搭的页面。 发现是页面插入了一段富文本中的<Strong>标签捣鬼,这个会引起Uncaught TypeError: widgetDom.webkitCreateShadowRoot is not a fun 阅读全文
posted @ 2020-03-11 11:44 猪mother 阅读(802) 评论(0) 推荐(0) 编辑
  2020年2月20日
摘要: //根据history判断,有历史页就返回上一页,没有就关闭页面function goBack(){ if ((navigator.userAgent.indexOf('MSIE') >= 0) && (navigator.userAgent.indexOf('Opera') < 0)){ // I 阅读全文
posted @ 2020-02-20 15:02 猪mother 阅读(757) 评论(0) 推荐(0) 编辑
摘要: 1.文字过长时,跑马灯展示<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <ti 阅读全文
posted @ 2020-02-20 11:27 猪mother 阅读(129) 评论(0) 推荐(0) 编辑
  2020年1月17日
摘要: 谁来补充 阅读全文
posted @ 2020-01-17 16:02 猪mother 阅读(84) 评论(0) 推荐(0) 编辑
摘要: //监听页面的input的聚焦失焦事件,聚焦的时候页面滚动到页面中,失去焦点的时候页面归位 $('input').on('focus',function(){ this.scrollIntoView(); }) $("input").on("blur",function(){ window.scro 阅读全文
posted @ 2020-01-17 13:59 猪mother 阅读(298) 评论(0) 推荐(0) 编辑