我無法讓我的代碼正常工作。由於某種原因,第二條if語句完全沒有被讀取。驗證無效(extjs)
function validateStation(v){
// search store for value... if you find it then true, else false
if (storeStation.findExact('disp',v) > -1) return true;
else return 'This value is not valid.';
if (cbStationFSAC.isValid()) return true;
else return 'This value is not valid.';
}
ExtJS的並不像之前執行的所有條件||字符 – user1676428