capricorncd / zx-editor

The HTML document (rich text) editor in Smart phone browser or webview, supporting mixed layout, reference, headline, unordered list, font color, bold and italics. 移动端HTML文档(富文本)编辑器,支持图文混排、引用、大标题、无序列表,字体颜色、加粗、斜体
https://capricorncd.github.io/zx-editor/demo
331 stars 100 forks source link

老哥,出出出大BUG啦 #18

Open senson2018 opened 5 years ago

senson2018 commented 5 years ago

用谷歌浏览器打开F12调试发现没有问题,然后用手机微信打开,发现点击文本框并不会弹出键盘,看了一下,是因为我使用了ydui.js这个插件导致的,里面使用了FastClick这个防止300秒延迟的东东,辣么问题来了,,有神马方法可以兼容这个东西吗? 我在其他页面使用过禁用FastClick这个东东的方法,不知道在这里可行否? 下面代码: var notNeed = FastClick.notNeeded(document.body); $.fn.triggerFastClick=function(){ this.trigger("click"); if(!notNeed){ this.trigger("click"); } }