<input type="text" name="a1" draggable="true" value="aaa">
给input 框添加 draggable="true"属性,是可拖动属性
禁止复制:
oncopy="return false"
禁止粘贴:
onpaste="return false"
禁止剪切:
oncut="return false"
禁止右键弹出:
oncontextmenu="return false"
关闭自动完成功能(缓存):
autocomplete="off"
自动获得焦点:
autofocus="autofocus"
禁用自动更正:
autocorrect="off"
来关闭键盘默认首字母大写(移动端):
autocapitalize="off"
不对元素的文本进行拼写检查:
spellcheck="false"
来源:CSDN
作者:longyinfengwu
链接:https://blog.csdn.net/tenggeer0789/article/details/103984985