phpBB3 鎖右鍵

回覆文章
yehlu
Site Admin
文章: 3245
註冊時間: 2004-04-15 17:20:21
來自: CodeCharge Support Engineer

phpBB3 鎖右鍵

文章 yehlu »

參考來源 http://audi.tw/Blog/webDesign/images/46/46-01.html
在 /var/www/phpBB3/styles/prosilver/template/
的 overall_header.html
及 simple_header.html
及 viewtopic_print.html
加入
<script language="javascript" type="text/javascript" src="./styles/prosilver/template/lock.js"></script>

lock.js 內容如下
/*
Copyright by Audi 2006
http://audi.tw
http://www.carousel.com.tw
歡迎應用於無償用途散播,並請勿移除本版權宣告

*/

var omitformtags=["input", "textarea", "select"];
function disableselect(e){for (i = 0; i < omitformtags.length; i++){if (omitformtags==(e.target.tagName.toLowerCase()))return;}return false}
function reEnable(){return true}document.write('<div style="position:absolute;visibility:visible;top:-3000px;left:-3000px;"><form name="_hiddenFrom"><input type="text" value="喔喔!你按Ctrl-A喔!" name="_hiddenText"></form></div>');
if (typeof document.onselectstart=="undefined"){document.onmousedown=disableselect;document.onmouseup=reEnable;}else{document.onmousedown=new Function("return false");document.onmouseup=new Function("return false");}
document.onselectstart=new Function("return false");document.onselect=new Function("return false");document.oncontextmenu=new Function("return false");onload=document._hiddenFrom._hiddenText.focus();
回覆文章

回到「PHP」