摘要:
function abc (a, b, c) { var count = 0 var timer = setInterval(function () { count++ console.log(a, count) if (count === b) { clearInterval(timer) } }, c) } abc('abc123',... 阅读全文
摘要:
var drawing=document.getElementById("drawing"); drawing.onclick= function () { var x, y, z; x=Math.floor(Math.random()*256); y=Math.floor(Math.random()*256); z... 阅读全文