亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

通過腳本控制指定內(nèi)容不能被選擇

 更新時(shí)間:2007年02月07日 00:00:00   作者:  
其它例子: 

復(fù)制代碼 代碼如下:

<script type="text/javascript"> 
disableSelection(document.body) //disable text selection on entire body of page 
</script> 

<script type="text/javascript"> 
var somediv=document.getElementById("mydiv") 
disableSelection(somediv) //disable text selection within DIV with id="mydiv" 
</script> 

<script type="text/javascript"> 
var alltables=document.getElementsByTagName("table") 
for (var i=0; i<alltables.length; i++) 
disableSelection(alltables[i]) //disable text selection within all tables on the page 
</script>


[Ctrl+A 全選 注:引入外部Js需再刷新一下頁面才能執(zhí)行]

相關(guān)文章

最新評(píng)論