
javaScript
wxcszrp
这个作者很懒,什么都没留下…
展开
-
第一个javaScript
Insert title here alert("hello"); document.write("666");原创 2016-07-11 11:01:19 · 252 阅读 · 0 评论 -
javaScript的DOM节点处理
1.事件的触发: Insert title here function show(a) { alert("666"); } 2.用到再说原创 2016-07-11 17:01:20 · 283 阅读 · 0 评论 -
javaScript的语法
1.没有int char等类型,统一用var Insert title here var a; a=1; document.write(a); 2.函数: Insert title here function show(a) { document.write(a); } show(1);原创 2016-07-11 11:27:47 · 285 阅读 · 0 评论 -
javaScript的各种对象
1.字符串: Insert title here var x=new String(); x="1234"; document.write(x.length+""); //字符串长度 document.write(x.indexOf("2",0)) //找到2的位置 2.日期 用到再说 3.数组: Insert title here原创 2016-07-11 20:49:49 · 284 阅读 · 0 评论