|
|
制作网页时的23个经典代码
|
时间:2005/05/15 出处: |
1.oncontextmenu="window.event.returnvalue=false"将彻底屏蔽鼠标右键 <tableborderoncontextmenu=return(false)><td>no</table>可用于Table 2.<bodyonselectstart="returnfalse">取消选取、防止复制
3.onpaste="returnfalse"不准粘贴
4.oncopy="returnfalse;"oncut="returnfalse;"防止复制
5.<linkrel="ShortcutIcon"href="favicon.ico">IE地址栏前换成自己的图标
6.<linkrel="Bookmark"href="favicon.ico">可以在收藏夹中显示出你的图标
7.<inputstyle="ime-mode:disabled">关闭输入法
8.永远都会带着框架 <scriptlanguage="javascript"></script>
20.获得一个窗口的大小 document.body.clientWidth,document.body.clientHeight document.body.offsetWidth,document.body.offsetHeight 有时还需要知道window.screenTop,window.screenLeft
21.怎么判断是否含有汉字 if(escape(str).indexOf("%u")!=-1)alert("含有汉字"); elsealert("全是字符");
22.TEXTAREA自适应文字行数的多少 IE5.5+可以用overflow-y:visible <textarearows=1name=s1cols=27style="overflow-y:visible"> </textarea>
23.日期减去天数等于第二个日期 <scriptlanguage=javascript> functioncc(dd,dadd) { //可以加上错误处理 vard=newDate(dd.replace("-","/")) d.setDate(d.getDate()+dadd) alert(d.getFullYear()+"年"+(d.getMonth()+1)+"月"+d.getDate()+"日") } cc("2002-2-28",2) </script> |
|