有時候我們不希望自己辛辛苦苦寫的文章被別人直接復制黏貼走,可以在頁面中添加一段js代碼,這段js代碼可以禁止選擇文字,禁止復制黏貼和鼠標右鍵,代碼如下:
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus?">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>Document</title>
</head>
<body>
<p><a href="http://www.gerenblog.com">萬志遠個人博客</p>
<script type="text/javascript">
document.oncontextmenu=new Function('event.returnValue=false;'); document.onselectstart=new Function('event.returnValue=false;');
</script>
</body>
</html>