html/css

1. HTML5 does not prohibit long press selection:

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

    Disable long press selection:

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

 

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=326866221&siteId=291194637