摘要: button{ /*消除button的默认样式*/ /*这种写法是对所有的button标签同时生效*/ margin: 0px; padding: 0px; /*自定义边框*/ border: 0px; /*消除默认点击蓝色边框效果*/ outline: none; } 阅读全文
posted @ 2019-03-31 09:40 Mr-Nobody 阅读(11200) 评论(0) 推荐(0) 编辑
摘要: 程序41:八进制转换为十进制 var num1=425; var num2=0; num1=num1.toString(); for(var i=num1.length-1,root=1;i>=0;i--){ num2+=Number(num1[i])*root; root*=8; } consol 阅读全文
posted @ 2019-03-31 08:58 Mr-Nobody 阅读(225) 评论(0) 推荐(0) 编辑