abstract:<!DOCTYPE html> <html> <head> <title></title> <!-- <script type="text/javascript" src="index.js"></script>
<!DOCTYPE html> <html> <head> <title></title> <!-- <script type="text/javascript" src="index.js"></script> --> </head> <body> <script type="text/javascript"> function zhuce(x,b) { x.style.background = b } </script> 姓名:<input type="text" onfocus="zhuce(this,'red')" onblur="zhuce(this,'pink')"> <!--鼠標點擊獲取焦點,和失去焦點后,輸入框變換顏色 也可以用其他驅(qū)動事件函數(shù)做類似事情,例如鼠標移動到某個元素上面等等。--> </body> </html>
Correcting teacher:查無此人Correction time:2019-04-23 13:33:54
Teacher's summary:完成的不錯。js代碼每行結(jié)束增加;號。繼續(xù)加油。