日期:2014-05-16 浏览次数:20396 次
js 使用技巧整理集合[javascript]
[code]
每一项都是js
中的小技巧,但十分的实用!
1.document.write("");
输出语句
2.JS
中的注释为//
3.
传统的HTML
文档顺序是:document->html->(head,body)
4.
一个浏览器窗口中的DOM
顺序是:window->(navigator,screen,history,location,document)
5.
得到表单中元素的名称和值:document.getElementById("
表单中元素的ID
号").name(
或value)
6.
一个小写转大写的JS:
document.getElementById("output").value =
document.getElementById("i
nput").value.toUpperCase();
7.JS
中的值类型:String,Number,Boolean,Null,Object,Function
8.JS
中的字符型转换成数值型:parseInt(),parseFloat()
9.JS
中的数字转换成字符型:(""+
变量)
10.JS
中的取字符串长度是:(length)
11.JS
中的字符与字符相连接使用+
号.
12.JS
中的比较操作符有:==
等于,!=
不等于,>,>=,<.<=
13.JS
中声明变量使用:var
来进行声明
14.JS
中的判断语句结构:if(condition){}else{}
15.JS
中的循环结构:for([initial
e­xpression];[condition];[upadte e­xpression]) {inside loop}
16.
循环中止的命令是:break
17.JS
中的函数定义:function functionName([parameter],...)
18.
当文件中出现多个form
表单时.
可以用document.forms[0],document.forms[1]
来代替.
19.
窗口:
打开窗口window.open(),
关闭一个窗口:window.close(),
窗口本身:self
20.
状态栏的设置:window.status="
字符";
21.
弹出提示信息:window.alert("
字符");
22.
弹出确认框:window.confirm();
23.
弹出输入提示框:window.prompt();
24.
指定当前显示链接的位置:window.location.href="URL"
25.
取出窗体中的所有表单的数量:document.forms.length
26.
关闭文档的输出流:document.close();
27.
字符串追加连接符:+=
28.
创建一个文档元素:document.createElement(),document.createTextNode()
29.
得到元素的方法:document.getElementById()
30.
设置表单中所有文本型的成员的值为空:
var form = window.document.forms[0]
for (var i = 0; i if (form.elements.type == "text"){
form.elements.value = "";
}
}
31.
复选按钮在JS
中判断是否选中:document.forms[0].checkThis.checked
(checked
属性代表为是否选中
返回TRUE
或FALSE)
32.
单选按钮组(
单选按钮的名称必须相同):
取单选按钮组的长度document.forms[0].groupName.length
33.
单选按钮组判断是否被选中也是用checked.
34.
下拉列表框的值:document.forms[0].selectName.options[n].value
(n
有时用下拉列表框名称加上.sel
ectedIndex
来确定被选中的值)
35.
字符串的定义:var myString = new String("This is
lightsword");
36.
字符串转成大写:string.toUpperCase();
字符串转成小写:string.toLowerCase();
37.
返回字符串2
在字符串1
中出现的位置:String1.indexOf("String2")!=-1
则说明没找到.
38.
取字符串中指定位置的一个字符:StringA.charAt(9);
39.
取出字符串中指定起点和终点的子字符串:stringA.substring(2,6);
40.
数学函数:Math.PI(
返回圆周率),Math.SQRT2(
返回开方),Math.max(value1,value2)
返回两个数中的最
在值,Math.pow(value1,10)
返回value1
的十次方,Math.round(value1)
四舍五入函数,Math.floor(Math.ra
ndom()*(n+1))
返回随机数
41.
定义日期型变量:var today = new Date();
42.
日期函数列表:dateObj.getTime()
得到时间,dateObj.getYear()
得到年份,dateObj.getFullYear()
得到
四位的年份,d