自定义对象
let 自定义对象名{
属性名:属性值,
函数名称:function(形参列表){}
};
注意:在自定义对象中使用当前自定义对象的属性或者函数,需要使用this
<!DOCTYPE html> <html lang="en"> <head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Document</title> </head> <body><script>//自定义对象let Person={//属性名:属性值name:"赫赫",age:18,//定义函数eat:function(){//注意:在自定义对象中使用当前自定义对象的属性或者函数,需要使用thisconsole.log("eat"+this.age);//this代表当前对象,即Person}};console.log(Person.name);console.log(Person.age);Person.eat();//调用函数</script> </body> </html>
window对象
1.确认框
let result=window.confirm("提示信息");
点击确认,返回true;
点击取消,返回false;
<!DOCTYPE html> <html lang="en"> <head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Document</title> </head> <body><script>let boo=window.confirm("确认删除吗");if(boo){console.log("把删除的物品的id传给后台");}else{console.log("不删除");}</script> </body> </html>
2.定时器
let 变量名 =window.setInterval(匿名函数,毫秒)
说明:每隔多少毫秒执行一次匿名函数体内部的函数体
取消定时器:
window.clearInterval(定时器变量名);
<!DOCTYPE html> <html lang="en"> <head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Document</title> </head> <body><script>//2s后打印一次hello,然后关闭let alarm=window.setInterval(function(){console.log("hello");//取消定时器window.clearInterval(alarm);},2000);//关闭定时器</script> </body> </html>
let 变量名=window.setTimeout(匿名函数,毫秒);
说明间隔多少毫秒执行匿名函数,且只执行一次
地址栏对象(location)
属性:href:要跳转的地址
<!DOCTYPE html> <html lang="en"> <head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Document</title> </head> <body><script>//停2秒跳转到百度window.setTimeout(function(){window.location.href="http://www.baidu.com";},2000);</script> </body> </html>