syso_Leon
2018-01-22 12:42
<!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 p = document.createElement("p");
p.setAttribute("class","message");
var text = document.createTextNode("I love javascript!");
p.appendChild(text);
document.body.appendChild(p);
</script>
</body>
</html>
应该是兼容性问题吧,IE和其他W3C标准的浏览器效果不一样,以前老是说过
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题