有两个选择,代码放在后台第三方或 css 模板里。
1、把下边代码添加到后台\全局\网站第三方代码框里。
[CSS] 纯文本查看 复制代码 <style>
.t_f, .t_f td {
-moz-user-select:none; /*Firefox私有属性 */
-webkit-user-select:none; /*WebKit 内核私有属性*/
-ms-user-select:none; /*IE私有属性(IE10及以后) */
-khtml-user-select:none; /*KHTML 内核私有属性*/
-o-user-select:none; /*Opera 私有属性*/
user-select:none; /*css属性 */
}
</style>
2、或把下边代码添加到 template\default\common\common.css 模板里。
[CSS] 纯文本查看 复制代码 .t_f, .t_f td {
-moz-user-select:none; /*Firefox私有属性 */
-webkit-user-select:none; /*WebKit 内核私有属性*/
-ms-user-select:none; /*IE私有属性(IE10及以后) */
-khtml-user-select:none; /*KHTML 内核私有属性*/
-o-user-select:none; /*Opera 私有属性*/
user-select:none; /*css属性 */
} |