返回用button......登陆

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

2019-05-18 13:10:01189
<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>


最新手记推荐

• 用composer安装thinkphp框架的步骤• 省市区接口说明• 用thinkphp,后台新增栏目• 管理员添加编辑删除• 管理员添加编辑删除

全部回复(0)我要回复

暂无评论~
  • 取消回复发送