标签:string col alt bsp div i++ get -- 后退
BOM模型包含的对象:
window(整个BOM的核心) history(历史记录) location(地址栏) document(html文档)
1) 弹框的
2) 打开一个新窗口, 以及关闭窗口
3) 定时器相关的, 完成一些动画效果
返回一个定时器对象
秒表计时案例
<div> <p><input type="text" value="0" id="num" /></p> <p><input type="button" value="开始" onclick="start()" /> <input type="button" value="暂停" onclick="end()" /></p> </div> <script> var timer; //只记录最后一次点击的,产生的定时器对象 // 点击5下, 创建5个定时器 function start(){ //获取文本框的value的值 var i = document.getElementById("num").value; timer = setInterval(function(){ document.getElementById("num").value = i++; },10); } function end(){ clearInterval(timer);//关闭定时器 } </script>
对象的属性
获取#之后的内容 hash #后面的 location.hash
host 获取 ip:端口 location.host
hostname: 主机名: url是ip形式,获取的ip, 写的域名, 获取域名 location.hostname
href: 获取url location.href
pathname 获取的资源路径 从端口之后,到?/# 之前 location.pathname
port 获取端口 location.port
protocol 获取协议 location.protocol
search 获取查询部分 ?(包括)之后的部分 location.search
location.reload();//刷新本页面
改变地址栏的网址 location.href="https://www.baidu.com";
go() 加载 history 列表中的某个具体页面。
history.go(-2) : 单击两次后退按钮执行的操作一样
来获取html页面中指定的标签(元素,节点)
元素的属性:
innerHTML属性,获取/设置开始标签到结束标签之间的内容(值)
获取getElementsByClassName的值
getElementsByClassName(“class名”).item(0).value;
标签:string col alt bsp div i++ get -- 后退
原文地址:https://www.cnblogs.com/64Byte/p/12589922.html