function getElement1(){
alert(document.all("myH2").tagName);
}
function getElement2(){
alert(myH2.tagName);
}
function showTags(){
alert(document.all.tags("P").length);
}
function showItems(){
var strTags = "";
for (var i=0; i
objEle = document.all("myTag").item(i);
strTags += objEle.tagName + " ";
}
alert(strTags);
}
获取HTML文件的指定元素
获取HTML文件的元素Body
获取HTML文件的元素H2
获取HTML文件的元素P
获取HTML文件的指定元素
function getElement1(){
alert(document.all("myH2").tagName);
}
function getElement2(){
alert(myH2.tagName);
}
function showTags(){
alert(document.all.tags("P").length);
}
function showItems(){
var strTags = "";
for (var i=0; i
objEle = document.all("myTag").item(i);
strTags += objEle.tagName + " ";
}
alert(strTags);
}