1 DOM层次
(1)doument(document.write())
window:(2)history(history.go(),history.back(),history.forward(),history.length)
(3)location(location.href, location..protocal,location.hostname, location.port, location.pathname,location.search, location.hash, location.reload (), location.replace)
window是以上三个的对象的父对象。
2数据类型转换
parseInt()-----将一个字符串转换为整数值
parseFloat()---将一个字符串转换为浮点小数值
例:stringvar="30 angey bears";
numvar=parseInt(stringvar);语句执行后得到的数值是30.字符中非数字的部分将被忽略。
toUpperCase()----将字符串中的所有字符转换为大写
toLowerCase()----将字符串中所有的字符转换为小写
substring 方法返回的是一个字符串,它包含原始字符串,和两个索引,word.substring(0,4);取0-4字符串,
charAt()---获取单个字符
indeOf()-----获取单个字符串