我无法找到一条信息 - if(""!="")
做了什么?
这是一个如何使用它的例子:
if(""!=""){document.write('<iframe src="'+''+'" border="0" alt="" style="display:none"/>');}
if(""!=""){document.write('<scr'+'ipt type="text/javascript" src="'+''+'"><\/scr'+'ipt>');}
答案 0 :(得分:0)
最有可能是占位符。
!=检查两边的两件事是否相同(与==相反)。
因此,""!=""
总是评估为false,因为两个空字符串实际上是相同的。
因此永远不会调用第一行。