Bootstrap

js实现禁止粘贴,vue-quill-editor富文本编辑器中禁止粘贴。

1. 控件

方法:添加 onpaste="return false"

<input type="text" onpaste="return false" >

2. 富文本编辑器

// html部分
<quill-editor v-model="content" :options="editorOption" ref="QuillEditor" ></quill-editor>

// js部分
mounted() {
 this.quill = this.$refs.QuillEditor.quill // 获取富文本编辑器
 this.quill.container.onpaste = function() { // 添加事件
  return false
 }
}

3. onpaste 事件

1)触发:onpaste 事件在用户向元素中粘贴文本时触发。
2)注意:虽然使用的 HTML 元素都支持 onpaste 事件,但实际上并非支持所有元素,例如 p元素, 除非设置了 contenteditable 为 “true”。
3)提示:onpaste 事件通常用于 type=“text” 的 元素。
4)提示:有三种方式可以在元素中粘贴内容:

  • 按下 CTRL + V
  • 从浏览器的编辑菜单中选择 “Paste(粘贴)”
  • 右击鼠标按钮在上下文菜单中选择 “Paste(粘贴)” 命令
;