在进行js编程时,总会出现可能一些函数或者变量未定义而被引用,导致报错的情况。为了避免此类事情的发生,可以在调用前判断函数是否已经被定义。
函数:
- try
- {
- if(typeof(eval(funcName))=="function")
- {
- funcName();
- }
- }catch(e)
- {
- alert("not function");
- }
变量:
- function check()
- {
- if (typeof(myvalue)=="undefined")
- {
- alert("value is undefined");
- }
- else
- {
- alert("value is true");
- }
- }