摘要:
<body><form name="f1"> <input name="b1" type="button" value="press me " /></form><script> function pleased() { document.getElementsByName("b1")[0].value += ".please!"; } document.getElementsByName("b1" 阅读全文
摘要:
var hd = document.getElementById("hd");hd.setAttribute("align", "center");var hc = document.getElementById("hc");hc.align = "center";思考下 hc.align 与 hc.style.textAlign的差别 阅读全文
摘要:
document有getElementByTagName等方法 ,element对象也定义了getElementByTagName等方法。它的行为与document对象的类似。只是它只返回一个元素,该元素是调用他的那个元素的后代。 阅读全文