html/css

1、html5不禁止长按选择:

* {
-webkit-touch-callout:inherit;
-webkit-user-select:text;
-khtml-user-select:text;
-moz-user-select:text;
-ms-user-select:text;
user-select:text;
}

    禁止长按选择:

* {
-webkit-touch-callout:none;
-webkit-user-select:none;
-khtml-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
}

猜你喜欢

转载自wenxin2009.iteye.com/blog/2291226