js笔记
2011年01月25日
1.document.write(""); 输出语句
2.JS
中 的注释为//
3.传统的HTML文档顺序是:document->html->(head,body)
4.一个 浏览器窗口中的DOM顺序是:window->
(navigator,screen,history,location,document)
5. 得到表单中元素的名称和
值:document.getElementByIdx_x_x("表单中元素的ID号").name(或value)
6. 一个小写
转大写的JS: document.getElementByIdx_x_x("output").value =
document.getElementByIdx_x_x("input").value.toUppe rCase();
7.JS
中 的值类型:String,Number,Boolean,Null,Object,Function
8.JS中的字符型
转换 成数值型:parseInt(),parseFloat()
9.JS中的数字转换成字符型:("" 变量)
10.JS中的取 字符串长度是:(length)
11.JS中的字符与字符相连接使用号.
12.JS中的比较操作符有:==等于,!=不等于,>,>=,
49.引用一个文件式的JS:
50.指 定在不支持脚本的浏览器显示的
HTML:
51.当超链 和onCLICK事件都有
时,则老版本的浏览器转向a.html,否则转向b.html.例:dfsadf
52.JS的内建对象
有:Array,Boolean,Date,Error,EvalError,Function,Math, Number,Object,RangeError,ReferenceError,RegExp,Stri ng,SyntaxError,TypeError,URIError
53.JS 中的换行:\n
54.窗口全屏大
小:function fullScreen(){
this.moveTo(0,0);this.outerWidth=screen.availWidth ;this.outerHeight=screen.availHeight;}window.maximi ze=fullScreen;
55.JS 中的all代表其下层的全部元素
56.JS中的焦点顺
序:document.getElementByIdx_x_x("表单元素").tabIndex = 1
57.innerHTML
的值是表单元素的值:如"how are
you",则 innerHTML的值就是:how are
you
58.innerTEXT 的值和上面的一样,只不过不会
把这种标记显示出来. 59.contentEditable可设置元素是 否可被修
改,isContentEditable返回是否可修改的状态.
60.isDisabled判断是否为禁止状
态.disabled 设置禁止状态
61.length取得长度,返回整型数值
62.addBehavior()
是一种JS调用的外 部函数文件其扩展名为.htc
63.window.focus()使当前的窗口在所有窗口之前.
64.blur()指失去焦点.与FOCUS()相反.
65.select()指元素为选中
状态.
66.防止用户对文本框中输入文本:οnfοcus="this.blur()"
67.
取出该元素在页面中出现的数量:document.all.tags("div(或其它HTML标记符)").length
68.JS中分为两种窗体输出:模态和非模
态.window.showModaldialog(),window.showModeless()
69. 状态栏文字
的设置:window.status='文字',默认的状态栏文字设置:window.defaultStatus = '文字.';
70.添加到收藏
夹:external.AddFavorite("http://www.dannyg.com";,"ja skdlf");
71.JS 中遇到脚本错误时不做任何操作:window.onerror = doNothing;
指定错误句柄的语法为:window.onerror = handleError;
72.JS中指定当前打开窗口的父
窗口:window.opener,支持opener.opener...的多重继续.
73.JS中的self指的是当
前的窗口
74.JS中状态栏显示内容:window.status="内容"
75.JS
中的top指的是框架集中最 顶层的框架
76.JS中关闭当前的窗口:window.close();
77.JS中提出是否确认的框:if(confirm("Are you
sure?")){alert("ok");}else{alert("Not Ok");}
78.JS中的窗口重定
向:window.navigate("http://www.sina.com.cn";);
79.JS 中的打
印:window.print()
80.JS中的提示输入
框:window.prompt("message","defaultReply");
81.JS 中的窗口滚动
条:window.scroll(x,y)
82.JS中的窗口滚动到位置:window.scrollby
83.JS 中设置时间间隔:setInterval("expr",msecDelay)或
setInterval(funcRef,msecDelay) 或setTimeout
84.JS中的模态显示在IE4
行,在NN中不行:showModalDialog("URL"[,arguments][,features]);
85.JS
中 的退出之前使用的句柄:function verifyClose(){event.returnValue="we really like you
and hope you will stay longer.";}} window.=verifyClose;
86.
当 窗体第一次调用时使用的文件句柄:onload()
87.当窗体关闭时调用的文件句柄:onunload()
88.window.location 的属性:
protocol(http:),hostname(www.example.com),port(80),host(www.example.com:80),pathname("/a
/a.html"),hash("#giantGizmo",指跳转到相应的锚记),href(全部的信息)
89.window.location.reload()
刷 新当前页面.
90.window.history.back()返回上一
页,window.history.forward() 返回下一页,window.history.go(返回第几页,也可以使用访问过的URL)
91.document.write()不换行 的输出,document.writeln()换行输出
92.document.body.noWrap=true;防止链接文字折行.
93. 变量 名.charAt(第几位),取该变量的第几位的字符.
94."abc".charCodeAt(第几个),返回第几个
字 符的ASCii码值.
95.字符串连接:string.concat(string2),或用 =进行连接
96.变量.indexOf("字符",起始位置),返回第一个出现的位置(从0开始计算)
97.string.lastIndexOf(searchString[,startIndex])
最 后一次出现的位置.
98.string.match(regExpression),判断字符是否匹配.
99.string.replace(regExpression,replaceString) 替换现有字符串.
100.string.split(分隔符)返回一个数组存储值.
101.string.substr(start[,length])
取 从第几位到指定长度的字符串.
102.string.toLowerCase()使字符串全部变为小写.
103.string.toUpperCase() 使全部字符变为大写.
104.parseInt(string[,radix(代
表进制)])强制转换成整型.
105.parseFloat(string[,radix]) 强制转换成浮点型.
106.isNaN(变量):测试是否为数值型.
107.定义常量的关键 字:const, 定义变量的关键字:var
2011年01月25日
1.document.write(""); 输出语句
2.JS
中 的注释为//
3.传统的HTML文档顺序是:document->html->(head,body)
4.一个 浏览器窗口中的DOM顺序是:window->
(navigator,screen,history,location,document)
5. 得到表单中元素的名称和
值:document.getElementByIdx_x_x("表单中元素的ID号").name(或value)
6. 一个小写
转大写的JS: document.getElementByIdx_x_x("output").value =
document.getElementByIdx_x_x("input").value.toUppe rCase();
7.JS
中 的值类型:String,Number,Boolean,Null,Object,Function
8.JS中的字符型
转换 成数值型:parseInt(),parseFloat()
9.JS中的数字转换成字符型:("" 变量)
10.JS中的取 字符串长度是:(length)
11.JS中的字符与字符相连接使用号.
12.JS中的比较操作符有:==等于,!=不等于,>,>=,
49.引用一个文件式的JS:
50.指 定在不支持脚本的浏览器显示的
HTML:
51.当超链 和onCLICK事件都有
时,则老版本的浏览器转向a.html,否则转向b.html.例:dfsadf
52.JS的内建对象
有:Array,Boolean,Date,Error,EvalError,Function,Math, Number,Object,RangeError,ReferenceError,RegExp,Stri ng,SyntaxError,TypeError,URIError
53.JS 中的换行:\n
54.窗口全屏大
小:function fullScreen(){
this.moveTo(0,0);this.outerWidth=screen.availWidth ;this.outerHeight=screen.availHeight;}window.maximi ze=fullScreen;
55.JS 中的all代表其下层的全部元素
56.JS中的焦点顺
序:document.getElementByIdx_x_x("表单元素").tabIndex = 1
57.innerHTML
的值是表单元素的值:如"how are
you",则 innerHTML的值就是:how are
you
58.innerTEXT 的值和上面的一样,只不过不会
把这种标记显示出来. 59.contentEditable可设置元素是 否可被修
改,isContentEditable返回是否可修改的状态.
60.isDisabled判断是否为禁止状
态.disabled 设置禁止状态
61.length取得长度,返回整型数值
62.addBehavior()
是一种JS调用的外 部函数文件其扩展名为.htc
63.window.focus()使当前的窗口在所有窗口之前.
64.blur()指失去焦点.与FOCUS()相反.
65.select()指元素为选中
状态.
66.防止用户对文本框中输入文本:οnfοcus="this.blur()"
67.
取出该元素在页面中出现的数量:document.all.tags("div(或其它HTML标记符)").length
68.JS中分为两种窗体输出:模态和非模
态.window.showModaldialog(),window.showModeless()
69. 状态栏文字
的设置:window.status='文字',默认的状态栏文字设置:window.defaultStatus = '文字.';
70.添加到收藏
夹:external.AddFavorite("http://www.dannyg.com";,"ja skdlf");
71.JS 中遇到脚本错误时不做任何操作:window.onerror = doNothing;
指定错误句柄的语法为:window.onerror = handleError;
72.JS中指定当前打开窗口的父
窗口:window.opener,支持opener.opener...的多重继续.
73.JS中的self指的是当
前的窗口
74.JS中状态栏显示内容:window.status="内容"
75.JS
中的top指的是框架集中最 顶层的框架
76.JS中关闭当前的窗口:window.close();
77.JS中提出是否确认的框:if(confirm("Are you
sure?")){alert("ok");}else{alert("Not Ok");}
78.JS中的窗口重定
向:window.navigate("http://www.sina.com.cn";);
79.JS 中的打
印:window.print()
80.JS中的提示输入
框:window.prompt("message","defaultReply");
81.JS 中的窗口滚动
条:window.scroll(x,y)
82.JS中的窗口滚动到位置:window.scrollby
83.JS 中设置时间间隔:setInterval("expr",msecDelay)或
setInterval(funcRef,msecDelay) 或setTimeout
84.JS中的模态显示在IE4
行,在NN中不行:showModalDialog("URL"[,arguments][,features]);
85.JS
中 的退出之前使用的句柄:function verifyClose(){event.returnValue="we really like you
and hope you will stay longer.";}} window.=verifyClose;
86.
当 窗体第一次调用时使用的文件句柄:onload()
87.当窗体关闭时调用的文件句柄:onunload()
88.window.location 的属性:
protocol(http:),hostname(www.example.com),port(80),host(www.example.com:80),pathname("/a
/a.html"),hash("#giantGizmo",指跳转到相应的锚记),href(全部的信息)
89.window.location.reload()
刷 新当前页面.
90.window.history.back()返回上一
页,window.history.forward() 返回下一页,window.history.go(返回第几页,也可以使用访问过的URL)
91.document.write()不换行 的输出,document.writeln()换行输出
92.document.body.noWrap=true;防止链接文字折行.
93. 变量 名.charAt(第几位),取该变量的第几位的字符.
94."abc".charCodeAt(第几个),返回第几个
字 符的ASCii码值.
95.字符串连接:string.concat(string2),或用 =进行连接
96.变量.indexOf("字符",起始位置),返回第一个出现的位置(从0开始计算)
97.string.lastIndexOf(searchString[,startIndex])
最 后一次出现的位置.
98.string.match(regExpression),判断字符是否匹配.
99.string.replace(regExpression,replaceString) 替换现有字符串.
100.string.split(分隔符)返回一个数组存储值.
101.string.substr(start[,length])
取 从第几位到指定长度的字符串.
102.string.toLowerCase()使字符串全部变为小写.
103.string.toUpperCase() 使全部字符变为大写.
104.parseInt(string[,radix(代
表进制)])强制转换成整型.
105.parseFloat(string[,radix]) 强制转换成浮点型.
106.isNaN(变量):测试是否为数值型.
107.定义常量的关键 字:const, 定义变量的关键字:var