js函数定义 库函数调用和自定义函数写法

Original 2019-06-22 11:54:44 350
abstract:<!DOCTYPE html><html><head charset='utf-8'> <title></title></head><body> <script type="text/javascript"> // var x="确定还是取消"

<!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>


Correcting teacher:查无此人Correction time:2019-06-22 17:04:45
Teacher's summary:完成的不错。每行js和jq语句结束增加;号。继续加油

Release Notes

Popular Entries