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

js和css的綜合應用

original 2019-03-16 22:01:29 281
abstrait:<!doctype html><html>     <head>         <title>js改變css效果</title>        &n

<!doctype html>

<html>
    <head>
        <title>js改變css效果</title>
        <style>
        *{margin:0px;padding:0px}
        #box{width:100px;height:100px;background:red;margin:40px 60px;}
        </style>
    </head>
    <body>
    
        <div id="box"><div>
        <input type="button" value="變高">
        <input type="button" value="變寬">
        <input type="button" value="變色">
        <input type="button"  value="重置">
        <input type="button"  value="消失">
        <input type="button" value="隱藏">
       <script>
       var box
	window.onload = function(){
		box = document.getElementById("box");
	

	}
	function aa(){
		box.style.height="400px;" //變高
	}
	function bb(){
		box.style.width="400px;"  //變寬
	}

	function cc(){
		box.style.background="pink;"//變色
	}

	function dd(){
		box.style.height="100px;" 
		box.style.width="100px;"  //chongzhi
		box.style.background="red;"
	}
	function ee(){
		box.style.display = "none" //消失
	}

	function ff(){
		box.style.display = "block" //顯示
	}
       </script>
    </body>
</html>


Professeur correcteur:滅絕師太Temps de correction:2019-03-18 09:24:35
Résumé du professeur:完成的不錯,除了上課練習,可以結(jié)合實際案例擴展!

Notes de version

Entrées populaires