getAttribute()用法简单介绍

getAttribute()用法简单介绍:
此方法返回指定属性名的属性值。
语法结构:

element.getAttribute(attributename)

参数解析:attributename:必需,要获得属性值的属性名称。

代码实例:

<!DOCTYPE html>
<html> 
<head> 
<meta charset=" utf-8"> 
<meta name="author" content="http://www.softwhy.com/" /> 
<title>蚂蚁部落</title> 
<script>
window.onload = function () {
  var obt = document.getElementById("bt");
  var odiv = document.getElementById("antzone");
  obt.onclick = function () {
    odiv.innerHTML = odiv.getAttribute("url");
  }
}
</script>
</head>
<body>
<div id="antzone" url="softwhy.com"></div>
<input type="button" id="bt" value="查看效果"/>
</body>
</html>

上面的代码可以获取div元素的url属性值。
如果要设置元素的属性值可以参阅setAttribute()函数的用法详解一章节。

原文地址是:getAttribute()用法简单介绍一章节。

你可能感兴趣的:(getAttribute()用法简单介绍)