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

一個簡單的點(diǎn)擊事件

Original 2019-04-06 19:19:26 215
abstract:<!DOCTYPE html> <html> <head> <title>點(diǎn)擊事件</title> </head> <body> <script type="text/javascript">   function myclic(y
<!DOCTYPE html>
<html>
<head>
	<title>點(diǎn)擊事件</title>
</head>
<body>
<script type="text/javascript">
  function myclic(y){
  	y.style.borderRadius="50px"
  }
</script>
<div style="width:100px;height:100px;border:1px solid #ccc;background:red;" onclick="myclic(this)"></div>
</body>
</html>


Correcting teacher:天蓬老師Correction time:2019-04-08 10:21:47
Teacher's summary:你的點(diǎn)擊事件夠簡單, 但實(shí)際工作中, 可能不會這么寫的

Release Notes

Popular Entries