最近写了这么一段,不太清楚为什么显示不出来,复制正确的又能正确显示???以后再对比一下
手打的:点击无效果
<!DOCTYPE html>
<html>
<head>
<mata charset="utf-8">
<title>day3 test js</title>
</head>
<body>
<div id="div1">div1</div>
<div id="div2">div2</div>
<div id="div3">div3</div>
<button id="button" onclick="showDate()">div3</div>
<style>
div{
width:100px;
height:100px;
background-color:red;
border:1px solid black}
#div1{
background-color:green;
}
#div2{
background-color:gray;
}
#div3{
background-color:yellow;
width:200px;
}
</style>
<script>
function showDate(){
document.getElementById("div1").innerHTML=Data();
}
</script>
</body>
</html>
复制其中一段的,点击有效果
document.getElementById("demo").innerHTML=Date();
额,大晚上写代码,老花眼了,Data写成Date。终于明白为啥显示不出来了
js脚本语言好像不能编译的哇,哪儿错了都不知道,只能靠自己火眼金睛辨认,慢慢学。 。。