手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >js null undefined 空区别说明
js null undefined 空区别说明
摘要:null,对象不存在varii=document.getElementById("id");alert(ii);当前页面不存在id对象und...

null,对象不存在

var ii= document.getElementById("id");

alert(ii);

当前页面不存在id对象

undefined

var i;

alert(i);

声明的变量没有初始化

alert(document.oiji);

或者对象属性,方法不存在

<asp:TextBox ID="name" runat="server" Width="100px" Text=""></asp:TextBox>

var iab = document.getElementById("name").value;

alert(iab);

id=name的值为空

【js null undefined 空区别说明】相关文章:

精确到分钟的js日历控件,日期选择器代码

window.onload与$(document).ready()的区别分析

动态加载jQuery的方法

JavaScript中的toUTCString()方法使用详解

用javascript制作放大镜放大图片

TypeError document.getElementById(...) is null错误原因

javascript瀑布流布局实现方法详解

JQuery控制Radio选中方法分析

Jquery注册事件实现方法

JS动态增删表格行的方法

精品推荐
分类导航