上一篇
如何利用DEDECMS复制文章并自动添加本站链接的详细代码示例?
- 行业动态
- 2024-10-04
- 1
<!在文章内容显示的地方加入以下代码 > {dede:arclist titlelen='50'} <!文章标题 > <h2><a href="[field:arcurl/]" target="_blank">[field:title/]</a></h2> <!> <p>[field:abstract/]</p> <!文章内容 > <div > [field:content/] </div> <!如果需要复制文章内容,加入以下代码 > <div > <div > <!以下代码用于检测用户是否复制了文章内容,并在控制台输出提示信息 > <script type="text/javascript"> document.addEventListener('copy', function (e) { e.preventDefault(); var selection = window.getSelection(); var content = selection.toString(); var originalSelection = selection.getRangeAt(0); var newSelection = document.createRange(); newSelection.selectNodeContents(document.querySelector('.copytext')); newSelection.collapse(false); var clonedSelection = newSelection.cloneRange(); clonedSelection.deleteContents(); clonedSelection.insertNode(originalSelection); selection.removeAllRanges(); selection.addRange(clonedSelection); var copyContent = clonedSelection.toString(); if (content === copyContent) { console.log('文章内容已复制,请不要非规复制本站内容!'); } originalSelection.collapse(false); selection.removeAllRanges(); selection.addRange(originalSelection); }); </script> <!以下代码用于将文章内容设置为不可选,防止直接复制 > <div contenteditable="false"> [field:content/] </div> </div> </div> {/dede:arclist}
这段代码的主要功能如下:
1、使用{dede:arclist}标签来遍历文章列表。
2、显示文章标题、摘要和内容。
3、在文章内容下方添加一个不可选的div元素,其中包含文章的内容。
4、使用JavaScript脚本监听copy事件,当用户尝试复制内容时,检测是否仅复制了文章内容,并在控制台输出提示信息。
这段代码可能需要根据您的具体模板进行调整,这种方法并不能完全阻止用户复制内容,但它可以作为一种提醒措施,告知用户内容来源。
本站发布或转载的文章及图片均来自网络,其原创性以及文中表达的观点和判断不代表本站,有问题联系侵删!
本文链接:http://www.xixizhuji.com/fuzhu/121841.html