•BOM提供了一些访问窗口对象的一些方法,我们可以用它来移动窗口位置,改变窗口大小,打开新窗口和关闭窗口,弹出对话框alert(),进行导航以及获取客户的一些信息如:浏览器品牌版本,屏幕分辨率。但BOM最强大的功能是它提供了一个访问HTML页面的一入口——document对象,以使得我们可以通过这个入口来使用DOM的强大功能!!!
•window对象是BOM中所有对象的核心。window对象表示整个浏览器窗口,但不必表示其中包含的内容。此外,window还可用于移动或调整它表示的浏览器的大小,或者对它产生其他影响。JavaScript中的任何一个全局函数或变量都是window的属性
screen对象包含有关用户屏幕的信息
•每个 Window 对象的 screen 属性都引用一个 Screen 对象。Screen 对象中存放着有关显示浏览器屏幕的信息。JavaScript 程序将利用这些信息来优化它们的输出,以达到用户的显示要求。例如,一个程序可以根据显示器的尺寸选择使用大图像还是使用小图像,它还可以根据显示器的颜色深度选择使用 16 位色还是使用 8 位色的图形。另外,JavaScript 程序还能根据有关屏幕尺寸的信息将新的浏览器窗口定位在屏幕中间。
document.write("width:"+window.screen.width+"
");
document.write("height:"+window.screen.height+"
");
document.write("avaiWidth:"+window.screen.availWidth+"
");
document.write("avaiHeight:"+window.screen.availHeight+"
");
document.write("colorDepth:"+window.screen.colorDepth);
•navigator 对象包含有关访问者浏览器的信息
document.write("appCodeName:"+navigator.appCodeName+"
");
document.write("appName:"+navigator.appName+"
");
document.write("appVersion:"+navigator.appVersion+"
");
document.write("browserLanguage:"+navigator.browserLanguage+"
");
document.write("cookieEnabled:"+navigator.cookieEnabled+"
");
document.write("platform:"+navigator.platform+"
");
document.write("userAgent:"+navigator.userAgent+"
");
document.write("userLanguage:"+navigator.userLanguage+"
");
“Netscape” 是 IE11、Chrome、Firefox 以及 Safari 的应用程序名称的统称。
可以不带window前缀写
•所有浏览器都支持 window 对象。它表示浏览器窗口。
•所有 JavaScript 全局对象、函数以及变量均自动成为 window 对象的成员。
–全局变量是 window 对象的属性。
–全局函数是 window 对象的方法。
–甚至 HTML DOM 的 document 也是 window 对象的属性之一:
•window.document.getElementById(“header”);
•与此相同:
•document.getElementById(“header”);
window.document.write("screenLeft:"+window.screenLeft);
•history 对象包含浏览器的历史
•History 对象最初设计来表示窗口的浏览历史。但出于隐私方面的原因,History 对象不再允许脚本访问已经访问过的实际 URL。唯一保持使用的功能只有 back()、forward() 和 go() 方法。
location 对象用于获得当前页面的地址•(URL),并把浏览器重定向到新的页面
var timeInterval = setInterval(myTimer,1000);
function openNew(){
location.href="../lesson1/reg.html";
}
function openNew2(){
location.assign("http://www.baidu.com");
}
function refresh1(){
location.reload(true);
}
function myTimer(){
var time = new Date().toLocaleTimeString();
document.getElementById("myTime").innerHTML=time;
}
function replace1(){
location.replace("http://www.baidu.com");
}
getElementsByName()
根据 W3C 的 HTML DOM 标准,HTML 文档中的所有内容都是节点:
父、子和同胞节点
我们常用父(parent)、**子(child)和同胞(sibling)**等术语来描述这些关系。父节点拥有子节点。同级的子节点被称为同胞(兄弟或姐妹)。
DOM 教程
DOM 课程1
Hello world!
//根节点,父节点
节点没有父节点;它是根节点
和 的父节点是 节点
文本节点 "Hello world!" 的父节点是 节点
//子节点,同胞节点
节点拥有两个子节点:
和
节点拥有两个子节点: 与 节点
节点也拥有一个子节点:文本节点 "DOM 教程"
和
节点是同胞节点,同时也是
的子节点
//首个节点和最后一个节点
元素是 元素的首个子节点
元素是 元素的最后一个子节点
元素是 元素的首个子节点
元素是
元素的最后一个子节点
//父亲元素
var div1 = document.getElementById("d1");
var chds = div1.childNodes;
chds[1].style.color="red";
chds[1].nextElementSibling.style.backgroundColor="blue";
chds[1].parentNode.style.backgroundColor="green";
创建节点:createElement
添加节点:appendChild
添加节点
//元素节点
var btn = document.createElement("BUTTON");
//文本节点
var text = document.createTextNode("newBtn");
//属性节点
var attr = document.createAttribute("name");
attr.value="btn1";
//添加文本节点
btn.appendChild(text);
//添加属性节点
btn.setAttributeNode(attr);
//添加元素(添加到节点末尾)
document.getElementById("d1").nextElementSibling.appendChild(btn);
//插入节点
var btn = document.createElement("BUTTON");
var text = document.createTextNode("Button3");
var attr = document.createAttribute("name");
attr.value="btn3";
btn.appendChild(text);
btn.setAttributeNode(attr);
var div1 = document.getElementById("d1");
var p1 = document.getElementById("p1");
div1.insertBefore(btn,p1);
//删除节点
var div1 = document.getElementById("d1");
var p1 = document.getElementById("p1");
div1.removeChild(p1);
//替换节点
var a = document.createElement("a");
var text = document.createTextNode("替换后的a标签");
var attr = document.createAttribute("style");
attr.value="background-color:yellow";
a.appendChild(text);
a.setAttributeNode(attr);
var div1 = document.getElementById("d1");
var p1 = document.getElementById("p1");
div1.replaceChild(a,p1);
设置class属性
.className = “style2”;
设置css样式:
.style.color=“red”;
.style.cssText = "background-color:black; display:block;color:White;
.style[‘border’]=“10px solid #fcfe3f”;
修改外连css表
获取属性:
getAttribute(“style”);
设置属性:
.setAttribute(“class”, “style2”);
删除属性:
.removeAttribute(“class”);
innerHTML,innerText,outerHTML,outerText
Mouse Over Me
onmousedown、onmouseup 以及 onclick 事件是鼠标点击的全部过程。首先当某个鼠标按钮被点击时,触发 onmousedown 事件,然后,当鼠标按钮被松开时,会触发 onmouseup 事件,最后,当鼠标点击完成时,触发 onclick 事件。
Click Me
首页轮播图:
https://www.cnblogs.com/tyblwmbs/p/10909792.html
https://blog.csdn.net/krysliang/article/details/84632780