特定の文字列をブラウザ上で選択できなくする方法(コピペ防止)
下記のように、選択させたくない領域にスタイルを指定する。
<div class="hoge">コピペさせたくない文章</div>
<style>
.hoge{
user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
unselectable="on"
onSelectStart="return false;"
}
</style>
Author And Source
この問題について(特定の文字列をブラウザ上で選択できなくする方法(コピペ防止)), 我々は、より多くの情報をここで見つけました https://qiita.com/kenichiro-yamato/items/c0c8666ebc69d053b7d5著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .