JS DOM对象 setAttribute() 方法增加一个指定名称和值的新属性,或者把一个现有的属性设定为指定的值。 语法: elementNode.setAttribute(name,valu

setAttribute()方法

setAttribute() 方法增加一个指定名称和值的新属性,或者把一个现有的属性设定为指定的值。

语法:

elementNode.setAttribute(name,value)

说明:

1.name: 要设置的属性名。

2.value: 要设置的属性值。

注意:

1.把指定的属性设置为指定的值。如果不存在具有指定名称的属性,该方法将创建一个新属性。

2.类似于getAttribute()方法,setAttribute()方法只能通过元素节点对象调用的函数。

任务

试一试,使用getAttribute()和setAttribute()方法,完成下面的任务:

在第21行补充代码,使用getAttribute()方法获取元素属性值,保存在变量text

在第25行补充代码,使用setAttribute()方法设置title属性值。


<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
</head>
<body>
  <p id="intro">我的课程</p>  
  <ul>  
    <li title="JS">JavaScript</li>  
    <li title="JQ">JQuery</li>  
    <li title="">HTML/CSS</li>  
    <li title="JAVA">JAVA</li>  
    <li title="">PHP</li>  
  </ul>  
  <h1>以下为li列表title的值,当title为空时,新设置值为"WEB前端技术":</h1>
<script type="text/javascript">
  var Lists=document.getElementsByTagName("li");

  for (var i=0; i<Lists.length;i++)
  {
		text = Lists[i].getAttribute("title");
		document.write(text +"<br>");
		if(text=="")
		{
			Lists[i].setAttribute("title","Web前端技术");
			document.write(Lists[i].getAttribute("title")+"<br>");
		}
  }
</script>
</body>
</html>

JS DOM对象 setAttribute() 方法增加一个指定名称和值的新属性,或者把一个现有的属性设定为指定的值。 语法: elementNode.setAttribute(name,valu_第1张图片


你可能感兴趣的:(JavaScript,dom,对象,web前端)