<!DOCTYPE html>
<html>
<head charset='utf-8'>
<title></title>
</head>
<body>
<script type="text/javascript">
// var x="确定还是取消"
// var r=confirm(x);
// alert(r)
// 这里是确认框调用
// var a="你叫什么名字"
// var bb=prompt(a)
// alert(bb)
// 这里是提示框的调用
// function 函数名称(参数1,参数2) {
// // body...
// // 函数体
// }
// function test(name,age){
// alert("姓名为:"+name+"年龄为:"+age)
// }
// test('小猫','58')
function myfovus(x){
x.style.background="pink"
}
function myonclick(y){
y.style.background="red"
}
function bianyuan(c){
c.style.borderRadius="50px"
}
function yidong(jj){
jj.
}
</script>
姓名:<input type="text" name="" onfocus="myfovus(this)">
<div style="width: 100px;height: 100px;border:1px solid #ccc;" onclick="myonclick(this)"></div>
<div style="width: 100px;height: 100px;border:1px solid #ccc; background-color: blue;" onclick="bianyuan(this)"></div>
</body>
</html>