DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript綜合知識 >> 使用typeof方法判斷undefined類型
使用typeof方法判斷undefined類型
編輯:JavaScript綜合知識     

   有關js判斷undefined類型,使用typeof方法,typeof 返回的是字符串,其中就有一個是undefined。

  js判斷undefined類型

  1if (reValue== undefined)

  2{

  3alert("undefined");

  4}

  發現判斷不出來,最後查了下資料要用typeof方法:

  1if (typeof(reValue) == "undefined")

  2{

  3alert("undefined");

  4}

  typeof 返回字符串,有六種可能:"number"、"string"、"boolean"、"object"、"function"、"undefined"。

  在使用時一定要注意。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved