携帯電話端末ではデフォルトの長押しコピー機能は禁止されています

556 ワード

すべてのテキストを長押ししてコピーしないには、cssスタイルに次のコードを追加します.
*{
  -webkit-touch-callout:none;  /*         */
  -webkit-user-select:none; /*webkit   */
  -khtml-user-select:none; /*     */
  -moz-user-select:none; /*  */
  -ms-user-select:none;  /*IE10*/
  user-select:none;
}

この方法ではinput入力ボックスが使用できなくなり、この問題を解決するために追加できます.
input{
  -webkit-user-select: auto;
}