返回dom节点联系...登陆

dom节点联系

小邓2019-04-23 19:53:34187

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<meta http-equiv="X-UA-Compatible" content="ie=edge">

<title>dom操作</title>

</head>

<body>

<ul>

<li id="tengxun">腾讯</li>

<li class="huawei">华为</li>

<li name="baidu">百度</li>

<li>阿里</li>

<li>京东</li>

</ul>

<script>

let name = document.getElementsByTagName('li')

for(var i = 0; i< name.length;i ++) {

name[i].style.backgroundColor = 'lightgreen';

}

document.getElementById('tengxun').style.backgroundColor = 'orange';

document.getElementsByClassName('huawei')[0].style.backgroundColor = 'lightblue';

document.getElementsByName('baidu')[0].style.backgroundColor = 'red';

</script>

</body>

</html>

QQ截图20190423195257.png

最新手记推荐

• 用composer安装thinkphp框架的步骤• 省市区接口说明• 用thinkphp,后台新增栏目• 管理员添加编辑删除• 管理员添加编辑删除

全部回复(0)我要回复

暂无评论~
  • 取消回复发送