在看完JavaScript的基础篇以及核心篇 让我哦学习 了很多 例如 变量 数组操作函数 函数 事件等很多
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<script type="text/javascript">
function y(s){
s.style.background="red"
}
function r(v){
v.style.borderRadius="50px"
}
</script>
</head>
<body>
<input type="" name="" onfocus="y(this)">
<div style="height: 90px;width: 90px;background: red;" onmouseup="r(this)"></div>
</body>
</html>