当前位置: 代码迷 >> JavaScript >> 温习js事件的用处
  详细解决方案

温习js事件的用处

热度:342   发布时间:2012-09-15 19:09:28.0
复习js事件的用处

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&shy;xpression];[condition];[upadte e&shy;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 属性代表为是否选中
返回TRUEFALSE)
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() 得到
四位的年份,dateObj.getMonth() 得到月份,dateObj.getDate() 得到日,dateObj.getDay() 得到日期几,dat
eObj.getHours()
得到小时,dateObj.getMinutes() 得到分,dateObj.getSeconds() 得到秒,dateObj.setTi
me(value)
设置时间,dateObj.setYear(val) 设置年,dateObj.setMonth(val) 设置月,dateObj.setDate(va
l)
设置日,dateObj.setDay(val) 设置星期几,dateObj.setHours 设置小时,dateObj.setMinutes(val) 设置分,
dateObj.setSeconds(val)
设置秒 [ 注意: 此日期时间从0 开始计]
43.FRAME
的表示方式: [window.]frames[n].ObjFuncVarName,frames["frameName"].ObjFuncVarN
ame,frameName.ObjFuncVarName
44.parent
代表父亲对象,top 代表最顶端对象
45.
打开子窗口的父窗口为:opener
46.
表示当前所属的位置:this
47.
当在超链接中调用JS 函数时用:(javascript :) 来开头后面加函数名
48.
在老的浏览器中不执行此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,String,SyntaxError,TypeError,URIError
53.JS
中的换行:\n
54.
窗口全屏大小:
55.JS
中的all 代表其下层的全部元素
56.JS
中的焦点顺序:document.getElementByid(" 表单元素").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.
防止用户对文本框中输入文本:onfocus="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"t;,"jaskdlf");
71.JS
中遇到脚本错误时不做任何操作:window.onerror = doNothing; 指定错误句柄的语法为:window.on
error = 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?"))else{alert("Not Ok");}
78.JS
中的窗口重定向:window.navigate("http://www.sina.com.cn"t;);
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)setTimeou
t
84.JS
中的模态显示在IE4+,NN 中不行:showModalDialog("URL"[,arguments][,features]);
85.JS
中的退出之前使用的句柄:function verifyClose(){event.returnValue="we really like you and ho
pe you will stay longer.";}} window.onbeforeunload=verifyClose;
86.
当窗体第一次调用时使用的文件句柄:onload()
87.
当窗体关闭时调用的文件句柄:onunload()
88.window.location
的属性: protocol(http:),hostname(example.com),port(80),host(e
xample.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 [/code]

小小 2007-12-12 16:16

[code]
javascript38
种小技巧,推荐新手查看。
事件源对象
event.srcElement.tagName
event.srcElement.type
捕获释放
event.srcElement.setCapture();
event.srcElement.releaseCapture();
事件按键
event.keyCode
event.shiftKey
event.altKey
event.ctrlKey
事件返回值
event.returnValue
鼠标位置
event.x
event.y
窗体活动元素
document.activeElement
绑定事件
document.captureEvents(Event.KEYDOWN);
访问窗体元素
document.all("txt").focus();
document.all("txt").select();
窗体命令
document.execCommand
窗体COOKIE
document.cookie
菜单事件
document.oncontextmenu
创建元素
document.createElement("SPAN");
根据鼠标获得元素:
document.elementFromPoint(event.x,event.y).tagName=="TD
document.elementFromPoint(event.x,event.y).appendChild(ms)
窗体图片
document.images[
索引]
窗体事件绑定
document.onmousedown=scrollwindow;
元素
document.
窗体.elements[ 索引]
对象绑定事件
document.all.xxx.detachEvent('onclick',a);
插件数目
navigator.plugins
取变量类型
typeof($js_libpath) == "undefined"
下拉框
下拉框.options[ 索引]
下拉框.options.length
查找对象
document.getElementsByName("r1");
document.getElementById(id);
定时
timer=setInterval('scrollwindow()',delay);
clearInterval(timer);
UNCODE
编码
escape() ,unescape
父对象
obj.parentElement(dhtml)
obj.parentNode(dom)
交换表的行
TableID.moveRow(2,1) document.all.csss.href = "a.css";
替换CSS

并排显示
display:inline
隐藏焦点
hidefocus=true
根据宽度换行
style="word-break:break-all"
自动刷新
<meta HTTP-EQUIV="refresh" CONTENT="8;URL=http://c98.yeah.net">
简单邮件
<a href="mailto:aaa@bbb.com?subject=ccc&body=xxxyyy">
快速转到位置
obj.scrollIntoView(true)

<a name="first">
<a href="#first">anchors</a>
网页传递参数
location.search();
可编辑
obj.contenteditable=true
执行菜单命令
obj.execCommand
双字节字符
/[^\x00-\xff]/
汉字
/[\u4e00-\u9fa5]/
让英文字符串超出表格宽度自动换行
word-wrap: break-word; word-break: break-all;
透明背景
<IFRAME src="1.htm" width=300 height=180 allowtransparency></iframe>
获得style 内容
obj.style.cssText
HTML
标签
document.documentElement.innerHTML
第一个style 标签
document.styleSheets[0]
style
标签里的第一个样式
document.styleSheets[0].rules[0]
防止点击空链接时,页面往往重置到页首端。
<a href="javascript:function()">word</a>
上一网页源
asp:
request.servervariables("HTTP_REFERER")
javascript:
document.referrer
释放内存
CollectGarbage();
禁止右键
document.oncontextmenu = function() { return false;}
禁止保存
<noscript><iframe src="*.htm"></iframe></noscript>
禁止选取<body oncontextmenu="return false" ondragstart="return false" onselectstart ="return false" onselect="document.selection.empty()" oncopy="document.selection.empty()" onbeforecopy="return false"onmouseup="document.selection.empty()>
禁止粘贴
<input type=text onpaste="return false">
地址栏图标
<link rel="Shortcut Icon" href="favicon.ico">
favicon.ico
名字最好不变16*1616, 放虚拟目录根目录下
收藏栏图标
<link rel="Bookmark" href="favicon.ico">
查看源码
<input type=button value=
查看网页源代码 onclick="window.location = 'view-source:'+ 'http://www.csdn.net/'">
关闭输入法
<input style="ime-mode:disabled">
自动全选
<input type=text name=text1 value="123" onfocus="this.select()">
ENTER
键可以让光标移到下一个输入框
<input onkeydown="if(event.keyCode==13)event.keyCode=9">
文本框的默认值
<input type=text value="123" onfocus="alert(this.defaultValue)">
title
换行
obj.title = "123 sdfs "
获得时间所代表的微秒
var n1 = new Date("2004-10-10".replace(/-/g, "\/")).getTime()
窗口是否关闭
win.closed
checkbox
扁平
<input type=checkbox style="position: absolute; clip:rect(5px 15px 15px 5px)"><br>
获取选中内容
document.selection.createRange().duplicate().text
自动完成功能
<input type=text autocomplete=on>
打开该功能
<input type=text autocomplete=off>
关闭该功能
窗口最大化
<body onload="window.resizeTo(window.screen.width - 4,window.screen.height-50);window.moveTo(-4,-4)">
无关闭按钮IE
window.open("aa.htm", "meizz", "fullscreen=7");
统一编码/ 解码
alert(decodeURIComponent(encodeURIComponent("http://
你好.com?as= hehe")))
encodeURIComponent
":""/"";" "?" 也编码
表格行指示
<tr onmouseover="this.bgColor='#f0f0f0'" onmouseout="this.bgColor='#ffffff'">

[/code]

?







1、onblur:失去焦点触发事件。
2、onchange:改变value同时失去焦点触发事件。
3、onclick:单击触发事件。
4、ondblclick:双击触发事件。
5、onfocus:获取焦点触发事件。
6、onhelp:
7、onkeydown:
8、onkeypress:每输入一个字符前触发事件。
9、onkeyup:每去掉或添加一个字符触发事件。
10、onmouseout:鼠标离开触发事件。
11、onmouseover:鼠标移上触发事件。
12、onmousemove:鼠标移上触发事件。
13、onmousedown与onmouseup和onclick事件差不多:单击触发事件。
14、onselect:选择触发事件。
.......

  相关解决方案