js小技巧之访问元素属性
文章来源:365jz.com 点击数:
237 更新时间:2009-09-13 10:39
参与评论
Code
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>无标题页</title>
</head>
<body>
<div id="roboth"></div>
<script type="text/javascript">
//<![CDATA
//attributes elements NamedNodeMap
var div=document.getElementById("roboth");
alert(div.attributes.getNamedItem("id").nodeValue);
alert(div.attributes.item(0).nodeValue);
alert(div.getAttributeNode("id").nodeValue);
alert(div.getAttribute("id"))
//]]>
</script>
</body>
</html>
如对本文有疑问,请提交到交流论坛,广大热心网友会为你解答!! 点击进入论坛
------分隔线----------------------------