window中内置的属性、方法和对象
一、属性
二、方法
1、typeof(value) : 判断数据类型 返回值有6种:undefined object function string number boolean
【注意:null 和 数组都是返回object】
console.log(typeof(undefined)); console.log(typeof("sforefr")); console.log(typeof(4566)); console.log(typeof(true)); console.log(typeof(function(){})); console.log(typeof([111,2323,34])); console.log(typeof(null)); console.log(typeof({age:45}));
三、对象
- location
属性:
(1) href
方法:
(1) assign() :打开新链接
(2) replace() : 替换当前链接
备注:href、assign() 和 replace()的同异