css實現的禁止標籤中內容選中效果

admin發表於2017-02-11
本章節介紹一下如何實現禁止選中標籤中的內容,無法選中自然也就無法複製黏貼。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
.demo{
  moz-user-select:-moz-none;
  -moz-user-select:none;
  -o-user-select:none;
  -khtml-user-select:none;
  -webkit-user-select:none;
  -ms-user-select:none;
  user-select:none;
}
</style> 
</head>
<body>
<div class="demo">螞蟻部落</div>
</body>
</html>

以上程式碼可以實現無法選中div中的文字,標準瀏覽器和IE9以上瀏覽器支援。

相關文章