01.添加事件
02.onload函數(shù)
03.選項卡
04.定時器
05.獲取非行內(nèi)樣式
06.BOM操作
07.select下拉框和oninput事件
01.添加事件
- 添加事件方式
<div style="width:200px; height:200px; background-color:red" onclick="alert('這是一個div')"></div>
<div style="width:200px; height:200px; background-color:blue" onclick="test()"></div>
<div id="div" style="width:200px; height:200px; background-color:green"></div>
</body>
</html>
<script>
function test() {
console.log('花田里犯了錯,說好,破曉前忘掉')
}
var odiv = document.getElementById('div')
odiv.onclick = function () {
console.log('遙遠的東方有一條龍')
}
- 顯示隱藏圖片
操作div的display屬性抽米,在block和none之間切換即可
div class="tu">
<img src="feng.jpg" alt="可愛的鳳姐"">
</div>
<button id="btn">讓鳳姐消失</button>
<button id="btn1" onclick="show()">說你愛我</button>
</body>
</html>
<script>
// 顯示和隱藏圖片操作的是div的display屬性茶敏,在block和none之間切換
var obutton = document.getElementById('btn')
obutton.onclick = function () {
// 找到指定div堤器,將其display屬性修改為none
var odiv = document.getElementsByClassName('tu')[0]
odiv.style.display = 'none'
}
function show() {
var odiv = document.getElementsByClassName('tu')[0]
odiv.style.display = 'block'
}
- this使用
在匿名函數(shù)中的this就是當(dāng)前對象
在onclick=demo(this) 就是當(dāng)前節(jié)點
修改內(nèi)容
this.innerHTML = 'xxx'
<body>
<div class="tang" style="width:200px; height:200px; background-color:red"></div>
<div class="tang" style="width:200px; height:200px; background-color:blue" onclick="demo(this)"></div>
</body>
</html>
<script>
// 點擊div,將寬度有200px修改為400px
var odiv = document.getElementsByClassName('tang')[0]
odiv.onclick = function () {
console.log(this)
// this就是odiv
this.style.width = '400px'
// 給div添加內(nèi)容
this.innerHTML = '秦時明月漢時關(guān),萬里長征人未還,但使龍城飛將在,不教胡馬度陰山'
}
function demo(obj) {
// 這里面的this是window治笨,在js里面寫的所有的函數(shù)都是window的函數(shù),調(diào)用demo其實就是 window.demo()
console.log(this)
// var odiv = document.getElementsByClassName('tang')[1]
obj.style.height = '400px'
}
點擊之前:
點擊之后:
- 切換背景色
<body>
<div id="bai" style="width:300px; height:300px; background-color:red;"></div>
</body>
</html>
<script>
var odiv = document.getElementById('bai')
odiv.onclick = function () {
// 先獲取div的背景色
color = this.style.backgroundColor
if (color == 'red') {
this.style.backgroundColor = 'yellow'
} else {
this.style.backgroundColor = 'red'
}
}
表單內(nèi)容控制
方法一:this傳值
<body>
<input id="ip" type="text" value="請輸入用戶名">
<input type="text" value="請輸入用戶名" onfocus="cleara(this)" onblur="recover(this)">
</body>
</html>
<script>
// clear是關(guān)鍵字签夭,不能使用函數(shù)名
function cleara(obj) {
// console.log('clear')
if (obj.value == "請輸入用戶名") {
obj.value = ''
}
}
function recover(obj) {
if (obj.value == '') {
obj.value = '請輸入用戶名'
}
}
方法二:getElementById()
var oinput = document.getElementById('ip')
oinput.onfocus = function () {
// 判斷要不要清空
if (this.value == "請輸入用戶名") {
this.value = ''
}
}
oinput.onblur = function () {
// 判斷內(nèi)容是不是為空湿镀,如果為空變成下面這個
if (this.value == '') {
this.value = '請輸入用戶名'
}
}
鼠標(biāo)點擊輸入框后:
02.onload函數(shù)
window的事件,windows.onload = function () {} 是在整個文檔加載完畢之后執(zhí)行姿染,但是自己寫的onclick的點擊函數(shù)不能寫到onload里面背亥,因為內(nèi)部函數(shù)只能在內(nèi)部使用秒际,不能再外部使用
<html>
<head>
<meta charset="UTF-8">
<title>onload函數(shù)</title>
<script type="text/javascript">
// demo() 有錯
window.onload=function(){
var odiv = document.getElementById('div2')
odiv.onclick = function () {
this.style.backgroundColor = 'red'
}
}
// function demo(obj) {
// obj.style.backgroundColor = 'cyan'
// }
</script>
</head>
<body>
<div id="div2" style="width:300px; height:300px; background-color:pink" onclick="demo(this)">
</div>
</body>
</html>
<script type="text/javascript">
// function demo(obj){
// obj.style.backgroundColor='red'
// }
</script>
03.選項卡
<style>
button {
width: 200px;
height: 100px;
font-size: 40px;
background-color: pink;
margin-left: 50px;
display: inline-block;
}
div {
width: 970px;
height: 600px;
font-size: 50px;
background-color: yellow;
margin-left: 50px;
margin-top: 50px;
display: none;
}
.active {
font-size: 50px;
background-color: blue;
}
.show {
display: block;
}
</style>
</head>
<body>
<button class="active" onclick="dudu(this, 0)">周杰倫</button>
<button onclick="dudu(this, 1)">王力宏</button>
<button onclick="dudu(this, 2)">張學(xué)友</button>
<button onclick="dudu(this, 3)">劉德華</button>
<div class="show">菊花臺、千里之外狡汉、七里香娄徊、霍元甲、聽媽媽的話盾戴、稻香寄锐、雙節(jié)棍、簡單愛</div>
<div>花田錯尖啡、龍的傳人橄仆、唯一</div>
<div>慢慢、吻別衅斩、一千個傷心的理由</div>
<div>謝謝你的愛盆顾、冰雨、天意畏梆、忘情水</div>
</body>
</html>
<script>
// 得到所有的button
var abuttons = document.getElementsByTagName('button')
// 得到所有的div
var adivs = document.getElementsByTagName('div')
function dudu(obj, index) {
// 先將所有的button的class屬性設(shè)置為空
for (var i = 0; i < abuttons.length; i++) {
abuttons[i].className = ''
adivs[i].className = ''
}
// 給指定的button添加樣式
obj.className = 'active'
// 給指定的div添加樣式
adivs[index].className = 'show'
}
</script>
04.定時器
定時器:分為兩種您宪,一種是周期性定時器,一種是一次性定時器
周期性:每隔5s執(zhí)行一次函數(shù)
一次性:幾秒之后執(zhí)行一次函數(shù)奠涌,執(zhí)行完畢定時器結(jié)束
var timer = setTimeout(fn, 5000)
5000ms之后執(zhí)行fn一次宪巨。然后結(jié)束
銷毀定時器 clearTimeout(timer)
- 一次性計時器
</head>
<body>
<div id="baby">
<img height="800px" src="meinv.jpg" alt="氣質(zhì)美女">
</div>
<button id="btn">點我給你福利</button>
</body>
</html>
<script>
var odiv = document.getElementById('baby')
var obtn = document.getElementById('btn')
// timer就是一個定時器
var timer = setTimeout(function () {
odiv.style.display = 'none'
}, 5000)
obtn.onclick = function () {
// 清除timer這個定時器
clearTimeout(timer)
}
</script>
- 周期計時器
</head>
<body>
<button onclick="demo()">一行司機上青天</button>
</body>
</html>
<script>
var timer = setInterval(function () {
console.log('兩個女孩鳴翠柳')
}, 5000)
function demo() {
clearInterval(timer)
}
</script>
05.獲取非行內(nèi)樣式
- IE瀏覽器獲取非行內(nèi)樣式方式
obj.currentStyle['name']
- 火狐和谷歌獲取方式
getComputedStyle(odiv, null)['width']
- 獲取非行內(nèi)樣式的兼容性寫法
function getStyle(obj, name) {
return obj.currentStyle ? obj.currentStyle[name] : getComputedStyle(obj, null)[name]
}
<style>
div {
width: 300px;
height: 300px;
background-color: pink;
}
</style>
</head>
<body>
<div id="lala"></div>
<input type="text" id="ip">
<button onclick="demo()">點我獲取div寬度</button>
</body>
</html>
<script>
var odiv = document.getElementById('lala')
function demo() {
// 獲取div的寬度,只能獲取行內(nèi)樣式
var kuan = odiv.style.width
// 獲取非行內(nèi)樣式
var kuan = odiv.currentStyle['width']
var kuan = getComputedStyle(odiv, null)['width']
var kuan = getStyle(odiv, 'width')
// 顯示到input框中
var oinput = document.getElementById('ip')
oinput.value = kuan
}
06.BOM操作
<body>
<button id="btn">點我</button>
<button id="btn1">摸我</button>
<button id="btn2">張家輝</button>
<button id="btn3">張家輝</button>
</body>
</html>
<script>
var obutton = document.getElementById('btn')
var obutton1 = document.getElementById('btn1')
var obutton2 = document.getElementById('btn2')
var obutton3 = document.getElementById('btn3')
obutton.onclick = function () {
ret = window.confirm('今天晚上準(zhǔn)備吃什么')
if (ret == true) {
console.log('你點擊了確定')
} else {
console.log('你點擊了取消')
}
}
obutton1.onclick = function () {
window.open('http://www.baidu.com/', '_self')
}
obutton2.onclick = function () {
// window.history.go(2)
window.history.back()
// file:///C:/Users/ZBLi/Desktop/1805/day02/14-bom.html
}
obutton3.onclick = function () {
// 得到當(dāng)前的url
// console.log(location.href)
// location.
location.reload()
}
</script>
07.select下拉框和oninput事件
onchange : 事件,用戶點擊下拉框觸發(fā)
selectedIndex : 用戶點擊的option的下標(biāo)溜畅,下標(biāo)從0開始
options : osel.options 可以得到所有的option對象揖铜,這是一個數(shù)組
input框的oninput事件,只要內(nèi)容改變达皿,就會觸發(fā)
<body>
<select name="刺客" id="sel">
<option value="1">阿珂</option>
<option value="2">蘭陵王</option>
<option value="3">孫悟空</option>
<option value="4">趙云</option>
<option value="5">李白</option>
</select>
<input type="text" id="ip">
</body>
</html>
<script>
var osel = document.getElementById('sel')
osel.onchange = function () {
// alert('我被出發(fā)了')
// alert(osel.selectedIndex)
alert(osel.options[osel.selectedIndex].innerHTML)
}
var oinput = document.getElementById('ip')
oinput.oninput = function () {
console.log(this.value)
}
</script>