2019年8月15日
摘要: let reg = new RegExp(/\ud83c[\udf00-\udfff]|\ud83d[\udc00-\ude4f]|\ud83d[\ude80-\udeff]/) if (reg.test(val)) { tip = '不能输入表情符号' Vue.$vux.toast.text(tip) return false } 阅读全文
posted @ 2019-08-15 10:42 猫尾草 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 1.浏览器滚动条滚动到页面顶部 document.body.scrollTop = 0 2.浏览器滚动条滚动到页面底部 document.body.scrollTop = document.body.scrollHeight 3.获取滚动条滚动的距离 document.documentElement 阅读全文
posted @ 2019-08-15 10:39 猫尾草 阅读(312) 评论(0) 推荐(0) 编辑