2012-11-09 来源:网络
【实例名称】
JS判断变量是否已经定义
【实例描述】
在普通的变量值判断中,可以使用“变量==null”来判断变量是否有值。该如何判断变量是否已经被定义?本例将学习这种判断方法。
【实例代码】
<html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>标题页-学无忧(www.xue51.com)</title> <script language ="javascript"> function judge() { if(typeof(iTxt)=="undefined") alert("iTxt变量未定义") else alert("iTxt变量已经定义"); } </script> </head> <body> <input id="Button1" type="button" value="判断" onclick="judge()" /> </body> </html>
【运行效果】
【难点剖析】
本例的重点是“undefined”,用其判断某个变量是否被定义。如果已经在前面使用“var”定义了变量,则undefmed不成立,否则认为变量未定义。
【源码下载】
为了JS代码的准确性,请点击:JS判断变量是否已经定义 进行本实例源码下载