标签: javascript
我想阻止用户将任何内容粘贴到我的输入字段中。
这就是我的尝试:
onpaste="event.returnValue=false;"
答案 0 :(得分:2)
<input type="text" onPaste="return false;">