Can't copy / paste in PhoneGap Ionic IOS

前端 未结 4 413
执念已碎
执念已碎 2020-12-18 08:29

I\'m using PhoneGap to build an app in IOS and it is almost done.

I just ran into a small problem. The user doesn\'t seem to be able to copy / past his content in a

4条回答
  •  抹茶落季
    2020-12-18 08:49

    try adding this css

       input, textarea {
            -webkit-user-select: auto !important;
            -khtml-user-select: auto !important;
            -moz-user-select: auto !important;
            -ms-user-select: auto !important;
            -o-user-select: auto !important;
            user-select: auto !important;  
      }
    

    I suppose ionic includes some css to avoid the copy/paste as usually the apps don't allow you to copy their content

提交回复
热议问题