一、BOM
1、location对象
location.href 获取URL location.href="URL" // 跳转到指定页面 location.reload() 重新加载页面
2、弹出框
alert();
3、计时相关
一次性
var t=setTimeout("JS语句",毫秒)
周期
setInterval("JS语句",时间间隔)
二、DOM
创建节点
var divEle = document.createElement("div");
标签属性
var divEle = document.getElementById("d1"); divEle.setAttribute("age","18") divEle.getAttribute("age") divEle.removeAttribute("age") // 自带的属性还可以直接.属性名来获取和设置 imgEle.src imgEle.src="..."
三、windows.onload
window.onload = function(){ var d1Ele = document.getElementById("d1"); alert(d1Ele.innerText); };
原文地址:https://www.cnblogs.com/wt7018/p/11316857.html
时间: 2024-10-12 01:15:11