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

事件學(xué)習(xí) 輸入框的獲取焦點(diǎn)和失去焦點(diǎn)的顏色變化

原創(chuàng) 2019-03-03 15:24:34 226
摘要:<!DOCTYPE html> <html> <head> <title>事件學(xué)習(xí)</title> </head> <body> <script type="text/javascript"> function myfocus(a){ a.style
<!DOCTYPE html>
<html>
<head>
	<title>事件學(xué)習(xí)</title>
</head>
<body>
<script type="text/javascript">
function myfocus(a){
	a.style.background="red"
}
function myblur(a){
	a.style.background="blue"
}

</script>
您的姓名:<input type="text"  onfocus="myfocus(this)" onblur="myblur(this)">
</body>
</html>


批改老師:西門大官人批改時(shí)間:2019-03-03 16:22:19
老師總結(jié):作業(yè)寫的很好。在js代碼中,最好在每行加上";",規(guī)范一些

發(fā)佈手記

熱門詞條