<--目录-->
1、js存在形式及其它
2、函数
3、自执行函数
4、jquery3添加事件
5、jquery自动增减样式
6、返回顶部
7、滚动条
8、×××灯
9、搜索框
js存在形式及其它
测试js 内容
函数.js
//alert('杨过');//这是单行注释/* 这是多行注释 name=123 全局变量设置 var name=123 局部变量设置 * *///函数变量,函数声明,函数返回值name = '123'tes = 'test1' Foo('wsyht1','wsyht2','wsyht3') //赋值第1、2、3位参数Bar()Bat()function Foo(name1,name2){ //传第1、2位参数 var name3 = arguments[2];var name4 = arguments[3]; //声明第3、4位参数,不推荐使用 console.log(name1); console.log(name2); console.log(name3);console.log(name4); //加分号写多条语句,输出3、4位参数,第四位没有赋值,则会输出没有定义 return console.log(name1);}function Bar(){ tes = 'test2'; console.log(name); console.log(tes);}function Bat(){ var name = '456' ; console.log(name); }
自执行函数
/*var temp = function(){ //匿名函数 }*///自执行函数,不用调用,自已去执行/*(function(){ console.log('hello world'); })()*//*(function(name){ console.log(name); })('wsyht')*///声明数组//var arry = arry(12,3,4,5)/*var arry = [1,2,3,4]arry.push('wsyht');console.log(arry);arry.unshift('wsy');console.log(arry);arry.splice(1,0,'ht'); //在1后面插入数字ok,0代表插入不删除的意思 console.log(arry);arry.splice(100,0,'ok'); //在100后面插入数字ok,0代表插入不删除的意思 console.log(arry);*///a = [1,2,3]//a[10] = 9//a//names = [1,22,33,44,55,66]//names.slice(1,5) //取第1位后面的所有数字//dic = {'name':'wsyht','age':18}//dic = {'name':{'xx':'oo'},'age':18}//第一种for循环var array = [11,22,33,44,55]var dict = {'name':'wsyht','age':19}/*for(var item in array){ console.log(item)}for(var item in dict){ console.log(dict[item])}*///第二种for循环/*for(var i=0;i
js添加事件
I would like to say:
js自动增减样式
jquery
js返回顶部
返回顶部asd
js滚动条
js×××灯
欢迎wsyht来参观我的项目
js搜索框