用button刷新颜色并且随机获取0~100的数字

Original 2019-05-18 13:10:01 189
abstract:<script>     // JS写的     // var btn = document.getElementsByTagName('button')[0];     // btn.add
<script>
    // JS写的
    // var btn = document.getElementsByTagName('button')[0];
    // btn.addEventListener("click", aa,false);
    // function aa() {
    //     var a=document.getElementsByTagName("a");
    //     for (var i=0;i<a.length;i++){
    //         a[i].style.background='rgb('+Math.floor(Math.random()*256)+','+Math.floor(Math.random()*256)+','+Math.floor(Math.random()*256)+')';
    //         a[i].innerHTML=Math.floor(Math.random()*100)
    //     }
    // }
//    jquery与js综合
    $('button').click(function () {
        var a=document.getElementsByTagName("a");
            for (var i=0;i<a.length;i++){
                a[i].style.background='rgb('+Math.floor(Math.random()*256)+','+Math.floor(Math.random()*256)+','+Math.floor(Math.random()*256)+')';
                a[i].innerHTML=Math.floor(Math.random()*100)
             }
    });
</script>


Correcting teacher:查无此人Correction time:2019-05-20 09:10:48
Teacher's summary:完成的不错。jq比js简单很多,多练习,jq可以代替js操作。继续加油。

Release Notes

Popular Entries