我使用JavaScript來我的網站禁用文本選擇。的javascript:禁用文本選擇
代碼:
<script type="text/JavaScript">
function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>
類似的腳本可以在這裏找到:http://rainbow.arch.scriptmania.com/scripts/no_right_click.html
在我的本地:所有瀏覽器(火狐,Chrome,IE和Safari)工作的偉大。
在我的直播網站:一切ok EXCEPT Firefox瀏覽器。
我的問題是:
有沒有人有一個建議,爲什麼Firefox的表現不同的活動站點和本地主機。注意:Javascript已啓用。
也許我的腳本是過於簡單化了,所以我試圖用完全相同的結果如下:http://freeware.ke-zo.com/CODES/DisableRC.txt
讓我建議你避免的Javascript這個用法案件。只要使用CSS,你可以找到有關CSS文本選擇[在此提問]更多的信息(http://stackoverflow.com/questions/826782/css-rule-to-disable-text-selection-highlighting) –
第二腳本可能太舊了。刪除!因爲的document.all我認爲它打破了FX支持 – mplungjan
焦點的時候不被FF和充分的理由支持 –