1 创建标签
    var 变量名 = document.createElement(“标签”);
    2 添加标签
    var 变量名 = document.createElement(“标签”);
    父级元素.appendChild(变量名);
    向父元素对象添加最后一个子元素。
    3 删除标签
    父级元素.removeChild(子元素);
    删除指定元素中的指定的子元素。
    document.body.removeChild(starList[i]);//将星从body中删除
    starList.splice(i,1);
    speed.splice(i,1);