$name = karlaxis;
if ($name == "") {
return false;
} elseif ($name != karlaxis) {
return false;
} else {
return true;
}
jQuery的
$.post("#name-form").attr("action").serializearray(), function(result){
if (result == false) {
console.log("result of the IF CONDITION");
} elseif (result == false) { //the result of ELSEIF in php
console.log("result of the ELSEIF CONDITION");
} else {
console.log("result of the ELSE CONDITION");
}
})
現在,如何讓elseif
的結果呢?
如何編碼那個?
jQuery代碼肯定有語法錯誤。請閱讀[MCVE](http://stackoverflow.com/help/mcve)。 – 31piy
@Karlaxis你在if和else中使用多個false if也是..將一個改爲true條件 – Gulshan
@MCVE是的先生我知道我只是簡化了我的代碼。對不起和平:) – Karlaxis