if (document.URL.indexOf("google") != -1) {
alert('at google');
}
else if (document.URL.indexOf("yahoo") != -1) {
if(a === true){
alert("true");
if(b === false)
alert("false");
}
我很难理解雅虎代码中的嵌套。这可能吗?
答案 0 :(得分:0)
是的,这完全有可能
如果document.URL.indexOf("google") != -1
,则会在Google'提醒
如果document.URL.indexOf("yahoo") != -1
和 a === true
,则会提醒“真实”'
如果document.URL.indexOf("yahoo") != -1
但是 b === false
,那么它会发出警告' false'