生活随笔
收集整理的這篇文章主要介紹了
常见网页特效
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
復制到剪切板 - 兼容 ie, firefox, chrome & flash10?flash部署到服務器上才可以,不能直接打開頁面
Java代碼??
<script>??????$(function(){??????????$('.copy').mouseenter(function()?{??????????????ZeroClipboard.setMoviePath("/statics/js/ZeroClipboard.swf");????????????????var?id?=?$(this).attr('id'),?dom?=?$(this).get(0);??????????????var?clip?=?new?ZeroClipboard.Client(dom);??????????????clip.setHandCursor(true);???????????????clip.setText('http://www.test.com/index/'+id+'.html');??//復制的文本??????????????????????????????clip.addEventListener(?"complete",?function(){??????????????????alert("復制成功!");??????????????});??????????});??????});??</script>?? ?防止復制,剪切,粘貼
Java代碼??
<body?oncopy?="return?false?"??oncut?="return?false?"??onpaste?=?"?return?false?">?? 4、禁止查看源碼
Java代碼??
<body?οncοntextmenu="return?false"></body>??? 19、打印
Java代碼??
<input?type=button?value='打印'?onClick="window.print();">?????<script?type="text/javascript">?????<!--???function?prePrint()??{??????if?(window.print)?window.print();??????else?if?(VBS)?printIt();??????else?alert('This?script?does?not?work?in?your?browser');??}??-->??</script>??</head>??<body?οnlοad="javascript:prePrint();"?style="background-color:#FFFFFF;">?? 9、徹底屏蔽鼠標右鍵 ?? <body οncοntextmenu="window.event.returnValue=false">
?? 或者:<body οncοntextmenu="self.event.returnValue=false">
?? 或者:<body οncοntextmenu="return false">
?
文本框里禁止自動完成功能,不再出現(xiàn)window自帶的提示功能
<input type="text" name="T1" size="20" autocomplete="off">
無關閉按鈕IE?
window.open("aa.htm", "meizz", "fullscreen=7");?
ENTER鍵可以讓光標移到下一個輸入框?
<input οnkeydοwn="if(event.keyCode==13)event.keyCode=9">?
文本框的默認值?
<input type=text value="123" onChange="alert(this.defaultValue)">?
自動全選?
<input type=text name=text1 value="123" οnfοcus="this.select()">
?
總結(jié)
以上是生活随笔為你收集整理的常见网页特效的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。