-
获取指定节点的父节点
注意:父节点只能有一个。
访问祖节点:
elementNode.parentNode.parentNode
查看全部 -
一、
firstChild
属性返回‘childNodes’数组的第一个子节点。如果选定的节点没有子节点,则该属性返回 NULL。语法:
node.firstChild
说明:与elementNode.childNodes[0]是同样的效果。
二、
lastChild
属性返回‘childNodes’数组的最后一个子节点。如果选定的节点没有子节点,则该属性返回 NULL。语法:
node.lastChild
说明:与elementNode.childNodes[elementNode.childNodes.length-1]是同样的效果。
查看全部 -
访问选定元素节点下的所有子节点的列表,返回的值可以看作是一个数组,他具有length属性
elementNode.childNodes
如果选定的节点没有子节点,则该属性返回不包含节点的 NodeList。
查看全部 -
1. nodeName : 节点的名称
2. nodeValue :节点的值
3. nodeType :节点的类型
一、nodeName 属性: 节点的名称,是只读的。
1. 元素节点的 nodeName 与标签名相同
2. 属性节点的 nodeName 是属性的名称
3. 文本节点的 nodeName 永远是 #text
4. 文档节点的 nodeName 永远是 #document二、nodeValue 属性:节点的值
1. 元素节点的 nodeValue 是 undefined 或 null
2. 文本节点的 nodeValue 是文本自身
3. 属性节点的 nodeValue 是属性的值三、nodeType 属性: 节点的类型,是只读的。以下常用的几种结点类型:
元素类型 节点类型
元素 1
属性 2
文本 3
注释 8
文档 9查看全部 -
setAttribute() 方法增加一个指定名称和值的新属性,或者把一个现有的属性设定为指定的值.
elementNode.setAttribute(name,value)
说明:
1.name: 要设置的属性名。
2.value: 要设置的属性值。
注意:
1.把指定的属性设置为指定的值。如果不存在具有指定名称的属性,该方法将创建一个新属性。
2.类似于getAttribute()方法,setAttribute()方法只能通过元素节点对象调用的函数。
查看全部 -
通过元素节点的属性名称获取属性的值。
elementNode.getAttribute(name)
1. elementNode:使用getElementById()、getElementsByTagName()等方法,获取到的元素节点。
2. name:要想查询的元素节点的属性名字
查看全部 -
function getValue()
{
var myH= document.getElementById("myHead");
alert(myH.innerHTML)
}
function getElements()
{
var myS=document.getElementsByName("sex");
alert(myS.length);
}
function getTagElements()
{
var myI= document.getElementsByTagName("input");
alert(myI.length);
}
查看全部 -
function onclick(){...}
function onmouseover(){...}
funbction onmouseout(){...}
function onfocus(){...}
function onblur(){...}
function onselect(){...}
function onchange(){...}
function onload(){...}
function onumload(){...}
查看全部 -
document.write("可用宽度:" +screen.availWidth );
document.write("可用高度:" +screen.availHeight );
查看全部 -
document.write( "屏幕宽度:"+screen.width+"px<br/>");
document.write( "屏幕高度:"+screen.height+"px<br/>");
查看全部 -
var u_agent = navigator.userAgent ;
<input type="button" value="查看浏览器" onclick="validB()" >
查看全部 -
screen.width
screen.height
screen.availWidth
screen.availHeight
Screen对象获取屏幕宽高与可用宽高
查看全部 -
document.write(window.location.href);
查看全部 -
function GoBack() {
window.history.go(-1);
}
function GoForward() {
window.history.go(1);
}
查看全部 -
function GoBack() {
window.history.go(-1);
}
查看全部
举报