我正在尝试使我的网页受 DO-NOT-COPY 保护.. 我得到以下代码.. 它适用于 chrome 和 IE,但不适用于 firefox..
<script type="text/JavaScript">
function NoCopy(e)
{
return false
}
function ReActivate()
{
return true
}
document.onselectstart = new Function ("return false")
if(document.sidebar)
{
document.onmousedown = NoCopy
document.onclick = ReActivate
}</script>
谁能帮我这个??
提前致谢