这个 if 语句不起作用。我希望它写“如果”,因为变量应该是空的。或者失败了,我会期待“其他”,但两者都没有
你也可以在JSFiddle上看到它完全没有工作的荣耀
我认为 JSFiddle 目前可能有问题
checkforthread();
function checkforthread() { // Check to see if it is a new or existing chat
// Set the variable
var existingthread = "";
document.write("test");
if (typeof(existingthread) == 'undefined' || variable == null) {
document.write("if");
gotostage3();
}
else {
document.write("else");
gotostage3();
}
}