【JavaScrip】-8-常用内置对象
作者:互联网
1、document
document.getElementById //通过id获取元素
document.getElementsByTagName //通过标签名获取元素
document.referrer //获取上一个跳转页面的地址(需要服务器环境)
2、location
window.location.href //获取或者重定url地址
window.location.search //获取地址参数部分
window.location.hash //获取页面锚点或者叫哈希值
3、Math
Math.random 获取0-1的随机数
Math.floor 向下取整
Math.ceil 向上取整
标签:常用,内置,JavaScrip,获取,window,取整,location,document,Math 来源: https://blog.csdn.net/python_jeff/article/details/100574566