为了账号安全,请及时绑定邮箱和手机立即绑定

使用setAttribute为什么不行

<!DOCTYPE HTML>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<title>无标题文档</title>

<style type="text/css">


.message{    

width:200px;

height:100px;

background-color:#CCC;}

</style>

</head>

<body>

<script type="text/javascript">

var ptag=document.createElement("p");

p.setAttribute("name","message");

var textnode=document.createTextNode("I love u");

ptag.appendChild(textnode);//变量不要加双引号,否则无效

document.body.appendChild(ptag);

</script> 


</body>

</html>


正在回答

6 回答

p.setAttribute("name","message");

首先p是html标签,用p是错误的,要改成ptag。css中的message是类,所以你的name要改成class才行

正确应该是:ptag.setAttribute("class","message");

0 回复 有任何疑惑可以回复我~

http://img1.sycdn.imooc.com//5986e7ea0001989c06060213.jpg

http://img1.sycdn.imooc.com//5986e7ea0001b0b102950202.jpg

结果都是:

http://img1.sycdn.imooc.com//5986e7eb00015e0b03910035.jpg


0 回复 有任何疑惑可以回复我~

好像setAttibute(name,value)里的参数名name不论是英文大写还是小写,实际运行之后都变成了小写。所以我用setAttribute没法设置innerHTML(HTML为大写)。

0 回复 有任何疑惑可以回复我~

p没有name属性,详见官网http://www.w3school.com.cn/tags/html_ref_standardattributes.asp

0 回复 有任何疑惑可以回复我~

如果你想要实现CSS 代码  a.className="message";  这样就能显示。

setAttribute("要设置的属性名字","要改变的值")

这个属性前些章节学过。  我没记错的话 好像只能修改字符串 等等。。

不能用来添加CSS 样式。

0 回复 有任何疑惑可以回复我~
#1

sherlockone

a 换成你要的 p
2017-03-17 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

使用setAttribute为什么不行

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信