次の JS コードは、他の人が記事を直接コピーすることを効果的に防ぐことができます。フレーム タグを使用して記事を参照すると、自動的に記事の通常のリンクにジャンプし、右クリック メニューが無効になります。以下、WordPressチュートリアル欄で具体的な方法をご紹介します。
使用方法 1:
現在のテーマ ヘッダー テンプレート header.php を開いて、次を見つけます: 次のコードを最後に追加します:
<script> // 禁止右键 document.oncontextmenu = function() { return false }; // 禁止图片拖放 document.ondragstart = function() { return false }; // 禁止选择文本 document.onselectstart = function() { if (event.srcElement.type != "text" && event.srcElement.type != "textarea" && event.srcElement.type != "password") return false; else return true; }; if (window.sidebar) { document.onmousedown = function(e) { var obj = e.target; if (obj.tagName.toUpperCase() == "INPUT" || obj.tagName.toUpperCase() == "TEXTAREA" || obj.tagName.toUpperCase() == "PASSWORD") return true; else return false; } }; // 禁止frame标签引用 if (parent.frames.length > 0) top.location.replace(document.location); </script>
使用方法 2:
上記の方法は、ソース コードを見ると少しわかりにくいです。現在のテーマを使用できます。 ディレクトリに copyright.js という名前の新しいファイルを作成し、次のコードを追加します:
// 禁止右键 document.oncontextmenu = function() { return false }; // 禁止图片拖放 document.ondragstart = function() { return false }; // 禁止选择文本 document.onselectstart = function() { if (event.srcElement.type != "text" && event.srcElement.type != "textarea" && event.srcElement.type != "password") return false; else return true; }; if (window.sidebar) { document.onmousedown = function(e) { var obj = e.target; if (obj.tagName.toUpperCase() == "INPUT" || obj.tagName.toUpperCase() == "TEXTAREA" || obj.tagName.toUpperCase() == "PASSWORD") return true; else return false; } }; // 禁止frame标签引用 if (parent.frames.length > 0) top.location.replace(document.location);
次に、現在のテーマの関数テンプレート function.php の末尾に次のコードを追加します。 ##
function copyrightpro_scripts() { wp_enqueue_script( 'copyright', get_template_directory_uri() . '/copyright.js', array(), false ); } if (! current_user_can('level_10') ) { add_action( 'wp_enqueue_scripts', 'copyrightpro_scripts' ); }
以上がWordPress 記事でのコードのコピーを防ぐ方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。