2012-09-14 65 views
0

我在IE中有一個奇怪的問題。奇怪的變量問題是IE瀏覽器

工具變量可以是空的,好像是我需要有 tool=='',使IE快樂。

//work in IE and other browsers.. 
    if(tool==null || tool==''){Alert('bang!!!');} 

//doesn't work in IE but not other browsers. 
    if(tool==null){Alert('bang!!!');} 

這是怎麼回事?

+0

您的意思是'alert()'? – undefined

+0

什麼是IE版本? – Spudley

+0

什麼** _在IE中不起作用,但不是其他瀏覽器_ **? –

回答

1

試試這個:

if(!tool){ 
    Alert('bang!!!'); 
} 

這裏,!tool將返回true如果tool = nulltool = ''