var a = [1,2,3,4,5,6];
var b=a.splice(2,3);//a为[1,2,6] b为[3,4,5] 删除从坐标2开始的3个数
4_3.pop();方法用于删除数组的最后一个元素并返回删除的元素。此方法改变数组的长度!
var a = [1,2,3,4,5,6];
var b=a.pop();//a长度为5 b长度为6
4_4.push();向数组的末尾添加一个或多个元素,并返回新的长度。
var a = [1,2,3];
a.push(4,5,6);
js效果-常用的js方法,完成后的功能
1.定时执行js方法
//方法一: //直接现定义函数
var time = window.setInterval(function(){
$('.btn').click();
},5000);
//方法二: //执行已经有的函数
var time = window.setInterval('show()',5000);
//清除js自动执行
clearInterval(time); //time就是定义时的名称,如上
2.定时间隔执行js方法
//定时器 异步运行
function hello(){
alert("hello");
}
//使用方法名字执行方法
var t1 = window.setTimeout(hello,1000);
var t2 = window.setTimeout("hello()",3000);//使用字符串执行方法
window.clearTimeout(t1);//去掉定时器
3.iframe子页面与父页面通信
//父页面
<iframe src="child.html"> </iframe>
function parentFF(){}
function callChild(){
//调用子页面函数
myFrame.window.childFF();//调用子页面函数
myFrame.window.document.getElementById("button").value="调用结束";//给子页面文本赋值
}
//子页面
<input id="button" type="button" value="调用父页面中的函数" onclick="callParent()"/>
function childFF(){}
function callParent(){
//调用子页面方法
parent.parentFF();//调用父页面函数
parent.window.document.getElementById("button").value="调用结束";//给父页面赋值
}
4.判断界面是否在iframe里面
if (top.location != window.location) {
//如果该页面在iframe里面,则重新在父级打开该页面,常见应用于登录页面
top.location = window.location;
}