DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> js null undefined 空區別說明
js null undefined 空區別說明
編輯:關於JavaScript     
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的值為空
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved