<meta charset="utf-8">
兄弟節(jié)點
<span>我是span1</span>
<div>我是div</div>
<span>我是span2</span>
<script>
var div = document.querySelector('div')
// 下一個兄弟節(jié)點虐呻, 包含 元素節(jié)點奈懒、文本節(jié)點等等
console.log(div.nextSibling)
console.log(div.previousSibling)
// 得到上区宇、下一個兄弟元素節(jié)點
console.log(div.nextElementSibling)
console.log(div.previousElementSibling)
</script>
![](https://upload-images.jianshu.io/upload_images/13248401-856ce1e7320f8fcf.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
創(chuàng)建節(jié)點
添加節(jié)點
<script>
// 1泌豆、創(chuàng)建節(jié)點值元素節(jié)點
var li= document.createElement('li')
// 2.添加節(jié)點 node.appendChild(Child) node 父級 Child是子集救欧,append后面追加
var ul = document.querySelector('ul')
ul.appendChild(li)
// 添加節(jié)點
// node.insertBefore(child, 指定元素)
var lili = document.createElement('li')
ul.insertBefore(lili, ul.children[0])
// 總結(jié) 我們想要在頁面中添加一個元素 1/創(chuàng)建節(jié)點 2.添加元素
</script>
留言發(fā)布案例
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
* {
margin: 0;
padding: 0;
}
body {
padding: 100px;
}
textarea {
width: 200px;
height: 100px;
border: 1px solid pink;
outline: none;
resize: none;
}
ul {
margin-top: 50px;
}
li {
width: 300px;
padding: 5px;
background-color: rgb(245, 209, 243);
color: red;
font-size: 14px;
margin: 15px 0;
}
</style>
</head>
<body>
<textarea name="" id=""></textarea>
<button>發(fā)布</button>
<ul></ul>
<script>
// 獲取元素
var btn = document.querySelector('button')
var text = document.querySelector('textarea')
var ul = document.querySelector('ul')
// 注冊事件
btn.onclick =function () {
// console.log( text.value)
if (text.value == ''){
alert('您啥也沒寫就發(fā)布衰粹?')
return false;
}else {
// 創(chuàng)建 li
var li = document.createElement('li')
// console.log( text.value)
// 先有 li 才能賦值
li.innerHTML = text.value
// 添加元素
// ul.appendChild(li)
ul.insertBefore(li, ul.children[0])
}
}
</script>
</body>
</html>
生成表格案例
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
table {
width: 600px;
cursor: pointer;
}
table td {
text-align: center;
}
table th {
background-color: blueviolet;
}
table tr {
background-color: pink;
}
</style>
</head>
<body>
<div id="dv">
請輸入姓名:
<input type="text" value="" id="uname"/>
<br/> 請輸入郵箱:
<input type="text" value="" id="email"/>
</div>
<input type="button" value="添加" id="btn"/>
<table border="1" cellpadding="0" cellspacing="0" id="tb">
<thead>
<tr>
<th>姓名</th>
<th>郵箱</th>
</tr>
</thead>
<tbody id="tbd">
<tr>
<td>小黑</td>
<td>xiaohei@126.com</td>
</tr>
<tr>
<td>小黑2</td>
<td>xiaohei@126.com</td>
</tr>
</tbody>
</table>
<script>
var btn = document.getElementById('btn')
btn.onclick = function () {
// console.log('haha')
// 獲取文本框的內(nèi)容
var uname = document.getElementById('uname')
var email = document.getElementById('email')
if (uname.value == '' || email.value == '') {
alert('信息不完整')
return false;
}
// 創(chuàng)建列
var td1 = document.createElement('td')
td1.innerHTML = uname.value
var td2 = document.createElement('td')
td2.innerHTML = email.value
//,把列添加到行中
var trObj = document.createElement('tr')
trObj.appendChild(td1)
trObj.appendChild(td2)
var tbd = document.getElementById('tbd')
// 把行添加到 tbody
tbd.appendChild(trObj)
}
</script>
</body>
</html>
刪除節(jié)點
node.removeChild() 方法從 node節(jié)點中刪除一個子節(jié)點笆怠,返回刪除的節(jié)點铝耻。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<button>刪除</button>
<ul>
<li>熊大</li>
<li>熊二</li>
<li>光頭強</li></ul>
<script>
var ul = document.querySelector('ul')
var btn = document.querySelector('button')
btn.onclick = function () {
if (ul.children.length == 0){
// alert('還刪吶')
this.disabled = true;
}else {
ul.removeChild(ul.children[0])
}
}
</script>
</body>
</html>
刪除留言板
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
* {
margin: 0;
padding: 0;
}
body {
padding: 100px;
}
textarea {
width: 200px;
height: 100px;
border: 1px solid pink;
outline: none;
resize: none;
}
ul {
margin-top: 50px;
}
li {
width: 300px;
padding: 5px;
background-color: rgb(245, 209, 243);
color: red;
font-size: 14px;
margin: 15px 0;
}
</style>
</head>
<body>
<textarea name="" id=""></textarea>
<button>發(fā)布</button>
<ul></ul>
<script>
// 獲取元素
var btn = document.querySelector('button')
var text = document.querySelector('textarea')
var ul = document.querySelector('ul')
// 注冊事件
btn.onclick =function () {
// console.log( text.value)
if (text.value == ''){
alert('您啥也沒寫就發(fā)布?')
return false;
}else {
var li = document.createElement('li')
// li.innerHTML = text.value + "<a href='#'>刪除</a>"
// li.innerHTML = text.value + "<a href='javascript:;'>刪除</a>"
ul.insertBefore(li, ul.children[0])
// 刪除元素
var as = document.querySelectorAll('a')
for (var i = 0; i < as.length; i++) {
console.log('dd');
as[i].onclick = function () {
ul.removeChild(this.parentNode)
}
}
}
}
</script>
</body>
</html>
復(fù)制(克碌潘ⅰ)節(jié)點
<ul>
<li>11111 <a href="#">dad</a></li>
<li>2</li>
<li>3</li>
</ul>
<script>
var ul = document.querySelector('ul')
// 只復(fù)制標(biāo)簽田篇,不復(fù)制內(nèi)容和子節(jié)點
var li1clone = ul.children[0].cloneNode(false);
ul.appendChild(li1clone)
</script>
表格動態(tài)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
table {
width: 500px;
margin: 100px auto;
border-collapse: collapse;
text-align: center;
}
td,
th {
border: 1px solid #333;
}
thead tr {
height: 40px;
background-color: #ccc;
}
</style>
</head>
<body>
<table cellspacing="0">
<thead>
<tr>
<th>姓名</th>
<th>科目</th>
<th>成績</th>
<th>操作</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<script>
// 1.先去準(zhǔn)備好學(xué)生的數(shù)據(jù)
var datas = [{
name: '魏瓔珞',
subject: 'JavaScript',
score: 100
}, {
name: '弘歷',
subject: 'JavaScript',
score: 98
}, {
name: '傅恒',
subject: 'JavaScript',
score: 99
}, {
name: '明玉',
subject: 'JavaScript',
score: 88
}, {
name: '大豬蹄子',
subject: 'JavaScript',
score: 0
}];
var tbody = document.querySelector('tbody')
// 遍歷數(shù)據(jù)
for (var i = 0; i < datas.length; i++) {
// 創(chuàng)建tr
var tr = document.createElement('tr')
tbody.appendChild(tr)
for (var k in datas[i]){
var td = document.createElement('td')
// console.log(datas[i][k])
td.innerHTML = datas[i][k]
tr.appendChild(td)
}
// 添加刪除
var td = document.createElement('td')
td.innerHTML = ' <a href="#">刪除</a>'
tr.appendChild(td)
}
// 刪除
var as = document.querySelectorAll('a')
for (var i = 0; i <as.length ; i++) {
as[i].onclick = function () {
tbody.removeChild(this.parentNode.parentNode)
}
}
</script>
</body>
</html>
<meta charset="utf-8">
創(chuàng)建元素的三種方式
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<button>點擊</button>
<p>abc</p>
<div class="inner"></div>
<div class="create"></div>
<script>
// window.onload = function () {
// document.write('<div>123</div>')
// }
// document.write創(chuàng)建元素如果頁面文檔流加載完畢替废,在調(diào)用這句話會導(dǎo)致頁面重繪
// var btn = document.querySelector('button')
// btn.onclick = function () {
// document.write('<div>123</div>')
// }
// 2\. innerHTML
var inner = document.querySelector('.inner')
// 拼接字符串
// for (var i = 0; i <100 ; i++) {
// inner.innerHTML += '<a href="#">百度</a>'
// }
// 使用數(shù)組的方式
var arr = [];
for (var i = 0; i <100 ; i++) {
// 數(shù)組元素的添加
arr.push('<a href="#">百度</a>')
}
// 將數(shù)組連接起來
inner.innerHTML = arr.join('')
//
var create = document.querySelector('.create')
for (var i = 0; i <100 ; i++) {
var a = document.createElement('a')
a.innerHTML = '百度'
a.href = "#"
create.appendChild(a)
}
</script>
</body>
</html>
拼接效率測試
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<script>
function fn() {
var d1 = +new Date() // + 號相當(dāng)于將時間對象做了隱士轉(zhuǎn)換
var str = '';
for (var i = 0; i <1000 ; i++) {
document.body.innerHTML += '<div style="width: 100px; height: 2px; border: 1px solid blue"></div>'
}
var d2 = +new Date()
console.log(d2-d1)
}
fn();
</script>
</body>
</html>
數(shù)組拼接
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<script>
function fn() {
var d1 = +new Date() // + 號相當(dāng)于將時間對象做了隱士轉(zhuǎn)換
var arr = [];
for (var i = 0; i <1000 ; i++) {
// document.body.innerHTML += '<div style="width: 100px; height: 2px; border: 1px solid blue"></div>'
arr.push('<div style="width: 100px; height: 2px; border: 1px solid blue"></div>')
}
document.body.innerHTML = arr.join('');
var d2 = +new Date()
console.log(d2-d1)
}
fn();
</script>
</body>
</html>
createElement
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<script>
function fn() {
var d1 = +new Date() // + 號相當(dāng)于將時間對象做了隱士轉(zhuǎn)換
for (var i = 0; i < 1000 ; i++) {
var div = document.createElement('div')
div.style.width = '100px';
div.style.height = '2px';
div.style.border = '1px solid blue';
document.body.appendChild(div)
}
var d2 = +new Date();
console.log(d2-d1)
}
fn();
</script>
</body>
</html>
DOM的核心總結(jié)
關(guān)于dom操作,我們主要針對于元素的操作泊柬。主要有創(chuàng)建椎镣、增、刪兽赁、改状答、查、屬性操作刀崖、事件操作惊科。
-
創(chuàng)建
-
增加
-
刪
-
改
-
查
-
屬性操作
事件操作(重點)
注冊事件
事件監(jiān)聽
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<button>傳統(tǒng)注冊事件</button>
<button>方法監(jiān)聽注冊事件</button>
<script>
var btns = document.querySelectorAll('button')
// 傳統(tǒng) 唯一
btns[0].onclick = function () {
alert('haha')
}
btns[0].onclick = function () {
alert('hehe')
}
// 方法監(jiān)聽注冊事件
// 不帶on
btns[1].addEventListener('click', function () {
alert('ahaha')
})
btns[1].addEventListener('click', function () {
alert('ahehe')
})
</script>
</body>
</html>
刪除事件
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
div{
width: 100px;
height: 100px;
background-color: blue;
}
</style>
</head>
<body>
<div>1</div>
<div>2</div>
<div>3</div>
<script>
var divs = document.querySelectorAll('div')
divs[0].onclick = function () {
alert('哈哈')
// 傳統(tǒng)刪除事件的方式
this.onclick = null;
}
divs[1].addEventListener('click', fn) // 傳函數(shù)名,不是調(diào)用
function fn() {
alert('haha')
this.removeEventListener('click', fn)
}
</script>
</body>
</html>
DOM事件流
html中的標(biāo)簽都是相互嵌套的亮钦,我們可以將元素想象成一個盒子裝一個盒子馆截,document是最外面的大盒子。
當(dāng)你單擊一個div時蜂莉,同時你也單擊了div的父元素蜡娶,甚至整個頁面。
那么是先執(zhí)行父元素的單擊事件映穗,還是先執(zhí)行div的單擊事件 窖张??
最終蚁滋,w3c 采用折中的方式宿接,平息了戰(zhàn)火,制定了統(tǒng)一的標(biāo)準(zhǔn) —--— 先捕獲再冒泡≡迹現(xiàn)代瀏覽器都遵循了此標(biāo)準(zhǔn)睦霎,所以當(dāng)事件發(fā)生時,會經(jīng)歷3個階段走诞。
我們向水里面扔一塊石頭副女,首先它會有一個下降的過程,這個過程就可以理解為從最頂層向事件發(fā)生的最具體元素(目標(biāo)點)的捕獲過程速梗;之后會產(chǎn)生泡泡肮塞,會在最低點( 最具體元素)之后漂浮到水面上,這個過程相當(dāng)于事件冒泡姻锁。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
.father {
overflow: hidden;
width: 300px;
height: 300px;
margin: 100px auto;
background-color: pink;
text-align: center;
}
.son {
width: 200px;
height: 200px;
margin: 50px;
background-color: blue;
line-height: 200px;
color: #fff;
}
</style>
</head>
<body>
<div class="father">
<div class="son">son盒子</div>
</div>
<script>
// dom 事件流三個階段
// 1\. js只能執(zhí)行捕獲或者冒泡其中的一個
// 2枕赵、 onclick 只有冒泡
// addEventListener(type, func, bool)
// 第三個參數(shù) 是true 處于捕獲階段
// document -> html -> body -> father -> son
// var son = document.querySelector('.son')
// son.addEventListener('click', function () {
// alert('son')
// }, true)
// var father = document.querySelector('.father')
// father.addEventListener('click', function () {
// alert('father')
// }, true)
//
// document.addEventListener('click', function () {
// alert('document')
// },true)
//
// 冒泡階段 第三個參數(shù) 是false或者不寫 處于冒泡階段
// son -> father -> body -> html -> document
var son = document.querySelector('.son')
son.addEventListener('click', function () {
alert('son')
}, false)
var father = document.querySelector('.father')
father.addEventListener('click', function () {
alert('father')
}, false)
document.addEventListener('click', function () {
alert('document')
},false)
</script>
</body>
</html>
事件對象
什么是事件對象
事件發(fā)生后,跟事件相關(guān)的一系列信息數(shù)據(jù)的集合都放到這個對象里面位隶,這個對象就是事件對象拷窜。
比如:
- 誰綁定了這個事件。
- 鼠標(biāo)觸發(fā)事件的話,會得到鼠標(biāo)的相關(guān)信息篮昧,如鼠標(biāo)位置赋荆。
- 鍵盤觸發(fā)事件的話,會得到鍵盤的相關(guān)信息懊昨,如按了哪個鍵窄潭。
事件對象的使用
事件觸發(fā)發(fā)生時就會產(chǎn)生事件對象,并且系統(tǒng)會以實參的形式傳給事件處理函數(shù)酵颁。
所以嫉你,在事件處理函數(shù)中聲明1個形參用來接收事件對象。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
div{
width: 100px;
height: 100px;
background-color: blue;
}
</style>
</head>
<body>
<div>123</div>
<script>
var div = document.querySelector('div')
// div.onclick = function (event) {
// console.log(event);
// }
div.addEventListener('click', function (e) {
console.log(e);
})
// 1\. event 就是一個事件對象 寫到我們偵聽函數(shù)的 小括號里面 當(dāng)形參來看
// 2\. 事件對象只有有了事件才會存在躏惋,它是系統(tǒng)給我們自動創(chuàng)建的幽污,不需要我們傳遞參數(shù)
// 3\. 事件對象 是 我們事件的一系列相關(guān)數(shù)據(jù)的集合 跟事件相關(guān)的 比如鼠標(biāo)點擊里面就包含了鼠標(biāo)的相關(guān)信息,鼠標(biāo)坐標(biāo)啊簿姨,如果是鍵盤事件里面就包含的鍵盤事件的信息 比如 判斷用戶按下了那個鍵
// 4\. 這個事件對象我們可以自己命名 比如 event 距误、 evt、 e
</script>
</body>
</html>
事件對象的屬性和方法
e.target 和 this 的區(qū)別
- this 是事件綁定的元素(綁定這個事件處理函數(shù)的元素) 扁位。
- e.target 是事件觸發(fā)的元素准潭。
常情況下terget 和 this是一致的,
但有一種情況不同贤牛,那就是在事件冒泡時(父子元素有相同事件惋鹅,單擊子元素则酝,父元素的事件處理函數(shù)也會被觸發(fā)執(zhí)行)殉簸,
這時候this指向的是父元素,因為它是綁定事件的元素對象沽讹,
而target指向的是子元素般卑,因為他是觸發(fā)事件的那個具體元素對象。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
div{
width: 100px;
height: 100px;
background-color: blue;
}
</style>
</head>
<body>
<div>123</div>
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
</ul>
<script>
var div = document.querySelector('div')
div.addEventListener('click', function (e) {
// 沒區(qū)別
console.log(e.target);
console.log('+++++++++++++++');
console.log(this)
})
var ul = document.querySelector('ul')
ul.addEventListener('click', function (e) {
// 綁定ul 指定的是ul
console.log(this)
console.log('+++++++++++++++');
console.log(e.currentTarget)
console.log('+++++++++++++++');
// 誰觸發(fā)了那個事件爽雄, e.target就指向誰
console.log(e.target);
})
</script>
</body>
</html>
阻止默認行為
html中一些標(biāo)簽有默認行為蝠检,例如a標(biāo)簽被單擊后,默認會進行頁面跳轉(zhuǎn)挚瘟。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<div>123</div>
<a >百度</a>
<form action="http://www.baidu.com">
<input type="submit" value="提交" name="sub">
</form>
<script>
var div = document.querySelector('div')
div.addEventListener('click', fn)
div.addEventListener('mouseover', fn)
div.addEventListener('mouseout', fn)
function fn(e) {
console.log(e.type);
}
// 阻止a 鏈接跳轉(zhuǎn)
var a = document.querySelector('a')
// a.addEventListener('click', function (e) {
// e.preventDefault() // 標(biāo)準(zhǔn)阻止寫法
// })
a.onclick = function (e) {
// e.preventDefault()
// return false 只有 在傳統(tǒng)注冊時候才能生效
return false;
}
</script>
</body>
</html>
阻止事件冒泡
事件冒泡本身的特性叹谁,會帶來的壞處,也會帶來的好處乘盖。
事件委托
事件冒泡本身的特性焰檩,會帶來的壞處,也會帶來的好處订框。
把事情委托給別人析苫,代為處理。
事件委托也稱為事件代理,在 jQuery 里面稱為事件委派衩侥。
說白了就是国旷,不給子元素注冊事件,給父元素注冊事件茫死,把處理代碼在父元素的事件中執(zhí)行跪但。
事件委托的原理
給父元素注冊事件,利用事件冒泡峦萎,當(dāng)子元素的事件觸發(fā)特漩,會冒泡到父元素,然后去控制相應(yīng)的子元素骨杂。
事件委托的作用
- 我們只操作了一次 DOM 涂身,提高了程序的性能。
- 動態(tài)新創(chuàng)建的子元素搓蚪,也擁有事件蛤售。
<ul>
<li>點我點我快點我!</li>
<li>點我點我快點我妒潭!</li>
<li>點我點我快點我悴能!</li>
<li>點我點我快點我!</li>
<li>點我點我快點我雳灾!</li>
</ul>
<script>
var ul = document.querySelector('ul')
// 事件委托的原理, 給父節(jié)點添加偵聽器漠酿,
// 利用事件冒泡去影響每一個子節(jié)點
ul.addEventListener('click', function (e) {
// alert('點了點了')
// e.target 可以得到我們點擊的對象
e.target.style.backgroundColor = 'blue';
})
// 給父元素注冊事件,利用事件冒泡谎亩,當(dāng)子元素的事件觸發(fā)炒嘲,會冒泡到父元素,
// 然后去控制相應(yīng)的子元素匈庭。
</script>
常用鼠標(biāo)事件
HTML防止別人分享案例
尊敬的騰訊會員夫凸,此乃九陽神功秘籍,不能給別人分享
<script>
// contextmenu 可以禁止右鍵菜單
document.addEventListener('contextmenu', function (e) {
e.preventDefault()
})
// selectstart禁止選中文字
document.addEventListener('selectstart', function (e) {
e.preventDefault()
})
</script>
鼠標(biāo)事件對象
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
body{
height: 3000px;
}
</style>
</head>
<body>
<script>
document.addEventListener('click', function (e) {
// 1\. client 鼠標(biāo)在可視區(qū)的x 和 y 的坐標(biāo)
console.log(e.clientX)
console.log(e.clientY)
console.log('++++++++++++++++++++++++++++++++++++')
// 2 page 鼠標(biāo)在頁面文檔的x 和 y 的坐標(biāo)
console.log(e.pageX)
console.log(e.pageY)
console.log('++++++++++++++++++++++++++++++++++++')
// 3 screen 鼠標(biāo)在電腦屏幕的x 和 y 的坐標(biāo)
console.log(e.screenX)
console.log(e.screenY)
console.log('++++++++++++++++++++++++++++++++++++')
})
</script>
</body>
</html>
案例:跟隨鼠標(biāo)的天使
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
img{
position: absolute;
top: 2px;
}
body{
height: 3000px;
}
</style>
</head>
<body>
<img src="../imgs/angel.gif" alt="">
<script>
var pic = document.querySelector('img')
document.addEventListener('mousemove', function (e) {
// console.log(1)
var x = e.pageX;
var y = e.pageY;
console.log('x坐標(biāo)的值是'+ x + 'y坐標(biāo)是' + y)
pic.style.left = x - 40 + 'px';
pic.style.top = y - 30 + 'px'
})
</script>
</body>
</html>
鍵盤事件
<script>
document.addEventListener('keyup', function () {
console.log('我彈起了')
})
document.addEventListener('keydown', function () {
console.log('我down了')
})
</script>
模擬京東按鍵輸入內(nèi)容
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<input type="text">
<script>
var search = document.querySelector('input')
document.addEventListener('keyup', function (e) {
console.log(e.keyCode)
if(e.keyCode === 83){
search.focus();
}
})
</script>
</body>
</html>
模擬京東快遞單號查詢
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
* {
margin: 0;
padding: 0;
}
.search {
position: relative;
width: 178px;
margin: 100px;
}
.con {
display: none;
position: absolute;
top: -40px;
width: 171px;
border: 1px solid rgba(0, 0, 0, .2);
box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
padding: 5px 0;
font-size: 18px;
line-height: 20px;
color: #333;
}
.con::before {
content: '';
width: 0;
height: 0;
position: absolute;
top: 28px;
left: 18px;
border: 8px solid #000;
border-style: solid dashed dashed;
border-color: #fff transparent transparent;
}
</style>
</head>
<body>
<div class="search">
<div class="con">123</div>
<input type="text" placeholder="請輸入您的快遞單號" class="jd">
</div>
<script>
var con = document.querySelector('.con')
var jd_input = document.querySelector('.jd')
jd_input.addEventListener('keyup',function () {
console.log('輸入啦')
if (this.value == ''){
con.style.display = 'none';
}else {
con.style.display = 'block';
con.innerText = this.value;
}
// 當(dāng)我們失去焦點 的時候隱藏div盒子哦
jd_input.addEventListener('blur', function () {
con.style.display = 'none';
})
// 當(dāng)我們獲取焦點 的時候顯示div盒子哦
jd_input.addEventListener('focus', function () {
if (this.value !== '') {
con.style.display = 'block';
}
})
})
</script>
</body>
</html>
BOM
- BOM(Browser Object Model)即瀏覽器對象模型阱持,它提供了獨立于內(nèi)容而與瀏覽器窗口進行交互的對象夭拌,其核心對象是 window。
- BOM 由一系列相關(guān)的對象構(gòu)成衷咽,并且每個對象都提供了很多方法與屬性鸽扁。
- BOM 缺乏標(biāo)準(zhǔn),JavaScript 語法的標(biāo)準(zhǔn)化組織是 ECMA镶骗,DOM 的標(biāo)準(zhǔn)化組織是 W3C桶现,BOM 最初是Netscape 瀏覽器標(biāo)準(zhǔn)的一部分。
BOM的構(gòu)成
頂級對象window
window對象的常見事件
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<script>
var num = 10;
console.log(num);
console.log(window.num);
function fn() {
console.log('fn');
}
fn();
window.fn();
console.dir(window);
</script>
</body>
</html>
window對象的常見事件
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script>
// window.onload = function () {
// var btn = document.querySelector('button')
// btn.addEventListener('click', function () {
// alert('點擊我')
// })
// }
// window.onload = function () {
// alert('hehe')
// }
window.addEventListener('load', function () {
var btn = document.querySelector('button')
btn.addEventListener('click', function () {
alert('點擊我')
})
})
window.addEventListener('load', function () {
alert('window')
})
// DOMContentLoaded 是dom加載完畢卖词, 加載速度比load更快一些
document.addEventListener('DOMContentLoaded', function () {
alert('DOMContentLoaded')
})
</script>
</head>
<body>
<button>點擊</button>
</body>
</html>