-1
我試圖得到,如果兩個變量都是對象返回TRUE,否則返回false測試多個變量,這些變量或對象不
var sString = "test string";
var oString = new String("test objects");
if(typeof sString == 'object' && typeof oObject == 'object'){
alert('true');
} else {
alert('false');
}
它提醒FASLE。沒關係。
var sString = new String("some test");
var oString = new String("test objects");
if(typeof sString == 'object' && typeof oObject == 'object'){
alert('true');
} else {
alert('false');
}
它提醒假。但應該回歸真實!
我已經試過這樣太:typeof sString && oString == 'object'
但不工作。
你真的嘗試過'typeof sString && oString ==''object'',或者你的意思是你試過' typeof sString =='object'&& typeof oString =='object''? – GregL