HTML5 will paste the copy-disabled solution to the long-pressed mobile phone page. html5 page

Source: Internet
Author: User

HTML5 will paste the copy-disabled solution to the long-pressed mobile phone page. html5 page

The solution is as follows:
 
Directly Add the following code to the CSS file to disable copy and paste on the mobile phone:

Copy XML/HTML Code to clipboard
  1. *{
  2. -Webkit-touch-callout: none;/* the default menu of the system is disabled */
  3. -Webkit-user-select: none;/* webkit browser */
  4. -Khtml-user-select: none;/* early browsers */
  5. -Moz-user-select: none;/* Firefox */
  6. -Ms-user-select: none;/* IE10 */
  7. User-select: none;
  8. }

After this code is added, there will be a problem on IOS. At this time, you will find that the input box cannot be entered. This is because-webkit-user-select: none; caused by this attribute.

To solve this problem, set the attribute of input in the css file as follows:

Copy XML/HTML Code to clipboard
  1. Input {
  2. -Webkit-user-select: auto;/* webkit browser */
  3. }

In this way, you can learn from each other and make progress on each other!

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.