递归:程序调用自身的编程技巧称为递归( recursion)。
造标签
var spn = document.createElement("span");
spn.style.color="";
spn.innerText = "字字字字字pendChild(spn);
document.getElementById("").appendChild(spn);
document.getElementById("").removeChild(spn);
设置属性
var btn = document.getElementById("btn");
// alert(btn.getAttribute('value'));
btn.onclick = function(){
btn.setAttribute("value","");
}
判断闰年
if((yeared % 100 != 0 && yeared % 4 == 0) || yeared % 400 == 0){}