<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Đoạn mã chống copy bài viết và hình ảnh]]></title><description><![CDATA[<p dir="auto">Để hạn chế người dùng copy dữ liệu từ diễn đàn, website bạn có rất nhiều cách. Dưới đây là một cách. Hãy chèn đoạn mã dưới vào website bạn muốn bảo vệ. Sẽ hạn chế khi người dùng view source , copy bài viết, hình ảnh ...</p>
<p dir="auto">var message="Text Here";<br />
function click(e)<br />
{<br />
if (document.all)<br />
{<br />
if (event.button==2||event.button==3)<br />
{<br />
alert(message);<br />
return false;<br />
}<br />
}<br />
else<br />
{<br />
if (e.button==2||e.button==4)<br />
{<br />
e.preventDefault();<br />
e.stopPropagation();<br />
alert(message);<br />
return false;<br />
}<br />
}<br />
}<br />
if (document.all) // for IE<br />
{<br />
document.onmousedown=click;<br />
}<br />
else // for FF<br />
{<br />
document.onclick=click;<br />
}</p>
<p dir="auto">function ehan( evnt )<br />
{<br />
if( evnt.which == 3 )<br />
{<br />
alert( "Text Here" );<br />
return false;<br />
}<br />
return true;<br />
}<br />
function ocmh()<br />
{<br />
alert( "Text Here" );<br />
return false;<br />
}<br />
document.oncontextmenu = ocmh;<br />
document.captureEvents( Event.MOUSEDOWN );<br />
if( document.layers ) document.onmousedown = ehan;</p>
<p dir="auto">if (window!=top){top.location.href=location.href;}</p>
<p dir="auto">if (window!=top){top.location.href=location.href;}</p>
]]></description><link>https://dalathoa.com/topic/853/doan-ma-chong-copy-bai-viet-va-hinh-anh</link><generator>RSS for Node</generator><lastBuildDate>Thu, 18 Jun 2026 20:53:59 GMT</lastBuildDate><atom:link href="https://dalathoa.com/topic/853.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 18 Jun 2026 16:52:58 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Đoạn mã chống copy bài viết và hình ảnh on Thu, 18 Jun 2026 16:52:59 GMT]]></title><description><![CDATA[<p dir="auto">dhl北京有信心，更有能力！！</p>
<p dir="auto">DHL是全球快递、洲际运输和航空货运的领导者，也是全球第一的海运和合同物流提供商。DHL为客户提供从文件到供应链管理的全系列的物流解决方案。    不论您所经营的行业是医疗保健、科技/航空、汽车/工业或者零售/消费品/服装，对于您的任何复杂的全球性物流任务，我们皆可完成。我们为您提供一整套定制的、基于信息技术的供应链解决方案。    除了核心的采购物流、仓储以及销售物流服务外，我们还提供诸多一流的增值服务，譬如整理，合并包装，贴价签，开发账单，订单处理，甚至销售促销和金融服务。    服务一流、速度一流、安全一流，目标要成为<a href="http://www.dhlbj.cn/" target="_blank" rel="noopener noreferrer nofollow ugc"><strong>北京dhl</strong></a>以及中国、世界速递快递行业内的后起之秀，为<a href="http://www.dhlbj.cn/" target="_blank" rel="noopener noreferrer nofollow ugc"><strong>北京dhl</strong></a>,为国家、为中华民族，创得外汇，争得荣誉，并愿与世界各国同行业在竞争中建立友谊。依托其全球网络、完备的IT系统支持，为客户提供专业的、个性化的国际专线快递服务和行业应用解决方案。    <a href="http://www.dhlbj.cn/" target="_blank" rel="noopener noreferrer nofollow ugc"><strong>北京dhl</strong></a>并成为dhl中外运敦豪、TNT天地物流、美国UPS联合包裹、美国FEDEX联邦快递、中邮EMS等知名国际快递的一级代理商，<a href="http://www.dhlbj.cn/" target="_blank" rel="noopener noreferrer nofollow ugc"><strong>dhl北京</strong></a>能为客户提供极其优惠的折扣服务，并与国外多家公司建立了良好的合作关系。    我们北京dhl坤讯快递公司的所有员工将以行动来证明最优质的服务，希望国内同胞，国际友人需要速递业务请与我们联系并合作。与我们合作将使您的事业、生活更加辉煌，更加幸福。<a href="http://www.dhlbj.cn/" target="_blank" rel="noopener noreferrer nofollow ugc"><strong>dhl北京</strong></a>因为我们有信心，更有能力！！</p>
]]></description><link>https://dalathoa.com/post/2735</link><guid isPermaLink="true">https://dalathoa.com/post/2735</guid><dc:creator><![CDATA[admin]]></dc:creator><pubDate>Thu, 18 Jun 2026 16:52:59 GMT</pubDate></item><item><title><![CDATA[Reply to Đoạn mã chống copy bài viết và hình ảnh on Thu, 18 Jun 2026 16:52:58 GMT]]></title><description><![CDATA[<p dir="auto">Mình bổ sung thêm mấy cái nữa</p>
<ul>
<li>Đoạn mã hạn chế người khác Save As.. trang web</li>
</ul>
<pre><code>
</code></pre>
<ul>
<li>Hạn chế select text</li>
</ul>
<p dir="auto">function disableselect(e){<br />
return false<br />
}</p>
<p dir="auto">function reEnable(){<br />
return true<br />
}</p>
<p dir="auto">//if IE4+<br />
document.onselectstart=new Function ("return false")</p>
<p dir="auto">//if NS6<br />
if (window.sidebar){<br />
document.onmousedown=disableselect<br />
document.onclick=reEnable<br />
}</p>
<ul>
<li>Khóa chuột phải (hạn chế view link nhạc, copy hình ảnh...)</li>
</ul>
<p dir="auto">var msg="Welcome to Đà Lạt Hoa  Com";<br />
function disableIE() {if (document.all) {alert(msg);return false;}<br />
}<br />
function disableNS(e) {<br />
if (document.layers||(document.getElementById&amp;&amp;!document.all)) {<br />
if (e.which==2||e.which==3) {alert(msg);return false;}<br />
}<br />
}<br />
if (document.layers) {<br />
document.captureEvents(Event.MOUSEDOWN);document.onmousedown=disableNS;<br />
} else {<br />
document.onmouseup=disableNS;document.oncontextmenu=disableIE;<br />
}<br />
document.oncontextmenu=new Function("alert(msg);return false")</p>
]]></description><link>https://dalathoa.com/post/2734</link><guid isPermaLink="true">https://dalathoa.com/post/2734</guid><dc:creator><![CDATA[admin]]></dc:creator><pubDate>Thu, 18 Jun 2026 16:52:58 GMT</pubDate></item></channel></rss>