课堂里老师对align属性的改动是有效的,这里怎么都无效?
<!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>Document</title>
<style>
p{
width: 200px;
height: 200px;
background: grey;
text-align: center;
line-height: 200px;
}
</style>
</head>
<body>
<p style="color:red;background:blue;">士大夫阿斯利康大家发是否</p>
<script>
var a=document.getElementsByTagName("p");
a[0].setAttribute("color","blue");//无效
a[0].removeAttribute("color");//无效
a[0].removeAttribute("height");//无效
a[0].removeAttribute("background");//无效
a[0].removeAttribute("line-height");//无效
a[0].removeAttribute("style");//只对行内样式有效
</script>
</body>
</html>
正在回答
同学你好,简单的理解就是能够设置或删除直接写在标签上的属性和属性值,如下:
如果我的回答帮助了你,希望采纳,祝学习愉快!
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星