js
无中生友
这个作者很懒,什么都没留下…
展开
-
常用的js操作
设置input隐藏并用js控制显示和隐藏 <input id="pro" name="pro" style="display:none"> 通过jquery操作来控制隐藏和显示 $("pro").show(); $("pro").hide(); 监听鼠标移除input框出发事件 $('input').on('blur', function(e, params){ var id = this.id }) JavaScript中使用正则表达式判断是否是正数: fu原创 2021-07-23 17:31:51 · 136 阅读 · 0 评论 -
JS相关
js定时器,轮询 多少秒后执行 setTimeout(function () { console.log('结束了') }, 1000) 轮询 setInterval(function () { console.log('一直在执行') },1000) 清除轮询 setTimeout(() => { that.setData({ indexBannar: false }) that.tabbarShow() clearInterval原创 2020-11-06 17:59:41 · 109 阅读 · 0 评论 -
js笔记
日期时间格式化 Date.prototype.Format = function (fmt) { var o = { "M+": this.getMonth() + 1, //月份 "d+": this.getDate(), //日 "H+": this.getHours(), //小时 **加粗样式** ...原创 2020-03-26 16:54:51 · 90 阅读 · 0 评论