1.将彻底屏蔽鼠标右键
oncontextmenu="window.event.returnvalue=false"
可用于Table<table oncontextmenu=return(false)><td>no</table>
2.获得一个窗口的大小
document.body.clientWidth
document.body.clientHeight
3.怎么判断是否是字符
if(/[^\x00-\xff]/g.test(s))
alert("含有汉字");
else
alert("全是字符");
3.怎么判断是否含有汉字
if(escape(str).indexOf("%u")!=-1)
alert("含有汉字");
else
alert("全是字符");
4.TEXTAREA自适应文字行数的多少
<textarearows=1 name=s1 cols=27 onpropertychange="this.style.posHeight=this.scrollHeight">
</textarea>
4.TEXTAREA自适应文字行数的多少
IE5.5+可以用overflow-y:visible
<textarearows=1 name=s1 cols=27 style="overflow-y:visible">
</textarea>
5.获得一个窗口的大小
document.body.clientWidth,document.body.clientHeight
document.body.offsetWidth,document.body.offsetHeight
有时还需要知道window.screenTop,window.screenLeft
6.确定变量类型
var answer1=true
document.write("变量1的类型是:"+typeof answer1 +"<br>"
7.关于数组
var array=new Array(5) // 声明数组
document.write("数组的元素个数是"+array.length)
str1=array.sort() // 对数组排序(string)
5.获得一个窗口的大小
5.获得一个窗口的大小