vue-quill-editor自动获取焦点,页面自动滚动到editor的位置 quill-editor自动获取焦点,页面自动滚动到editor的位置的问题解决,在nextTick中取消焦点,并用jq滚动回页面顶部。 this.$nextTick(function() { this.$refs.myQuillEditor.quill.blur(); $('.main_content').scrollTop(0); });...
微信小程序textarea不能输入的bug 最近写个需求,在一个弹窗里用到了四个textarea,手机测试的时候发现安卓切换textarea的时候,有的textarea不能输入,显示也有问题。最后发现是不能在scroll-view里面使用。...
datepicker设置默认日期 今天使用发现问题datepicker 用.val()设置默认值之后,点开的时间和设置的不一样。百度没找到解决方案随便看了眼官方文档。。。用update好使$('#new_date').datepicker('update', '2019-07-17');...
小程序轮播默认指示点dots修改 简单的东西非得弄的那么啰嗦i_sw是轮播图的类名默认的.i_sw .wx-swiper-dot{background-color:#fff;}当前的.i_sw .wx-swiper-dot-active{background-color: red} ...