<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style>
</style>
<script>
window.onload = function(){
var fn={
plus1:function(a,b){ //var plus=function(a,b){ 不能这样,因为自己已在变量的定义里
return a+b;
},
minus1:function(a,b){
return a-b;
}
}
//alert(fn.plus1);
document.write(fn.plus1(1,2)+'<br />');
document.write(fn.minus1(3,2)+'<br />');
var odiv=document.getElementById("div");
document.write(odiv.nodeName+'<br />'+odiv.nodeType+'<br />'+odiv.nodeValue);
}
</script>
</head>
<body>
<div id="div">12</div>
</body>
</html>
弹出错误:Cannot read property 'nodeName' of null" 为什么呢?
Caballarii
小董ong123456
相关分类