<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<script>
function myfovus(x){
x.style.background='yellow'
}
function onlick(y){
y.style.borderRadius="50px"
}
</script>
姓名:<input type="text" onfocus="myfovus(this)">
<br>
<br>
<div style="width: 200px;height: 200px;border:1px solid black" onclick="onlick(this)"></div>
</body>
</html>