亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

鼠標(biāo)點(diǎn)擊變色和鼠標(biāo)點(diǎn)擊換圖

原創(chuàng) 2019-01-27 10:31:23 406
摘要:<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <style> .div_a{       background-color:green;    &nb
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
.div_a{ 
     background-color:green;
     color:#ffffff;
     width:90px;
     height:20px;
     padding:40px;
     font-size:12px;
    }
</style>
<script>
   function mDown(a){
      a.style.backgroundColor="#1ec5e5";
      a.innerHTML="釋放鼠標(biāo)變色"
   }
   function mUp(b){
      b.style.backgroundColor="red";
      b.innerHTML="請雙擊鼠標(biāo)按鈕"
   }
   function lick(c){
      c.style.backgroundColor="darkmagenta";
      c.style.borderRadius="50px"  
      c.innerHTML="單擊鼠標(biāo)變色"
   }
   function img_a(d){
      d.src="/xuexi/static/images/bg1.jpg"
   }

   function img_a1(e){
      e.src="/xuexi/static/images/banner1.jpg"
   }
</script>
</head>

<div onmousedown="mDown(this)" onmouseup="mUp(this)" ondblclick="lick(this)">請點(diǎn)擊這里</div>
<img src="/xuexi/static/images/banner1.jpg"  onclick="img_a(this)" onmouseout="img_a1(this)">
</body>
</html>

總結(jié):使用函數(shù)的 參數(shù)來修改內(nèi)容,然后通過事件來調(diào)用參數(shù)實(shí)現(xiàn)的效果,特別注意的是使用this來調(diào)用當(dāng)前的參數(shù),而不是參數(shù)名。

批改老師:天蓬老師批改時(shí)間:2019-01-27 10:33:23
老師總結(jié):onclick="img_a(this)" onmouseout="img_a1(this), 這樣的多個(gè)事件, 建議不要寫到html屬性中

發(fā)佈手記

熱門詞條