在做一些动画效果时,因为有文本的存在,会无意选择到文本,就需要禁止选择文本
可以在标签上加
也可以在js中写
element.onselectstart=function(){}
注意:次事件对input和textarea无效
onselect 只对input和textarea生效,,选中文本时执行函数
element.onselect=function(){}
时间: 2024-11-08 14:16:40
在做一些动画效果时,因为有文本的存在,会无意选择到文本,就需要禁止选择文本
可以在标签上加
也可以在js中写
element.onselectstart=function(){}
注意:次事件对input和textarea无效
onselect 只对input和textarea生效,,选中文本时执行函数
element.onselect=function(){}