現在我有隻有1 IF語句:添加3 IF語句的jQuery
它像:如果4天巴黎選擇選擇& 1人,然後顯示一個div:
if (personPValue == "4 Days Paris" && numAantal == "1") {
$("#t-extracost-90").show();
extraCost90 = 90;
} else {
$("#t-extracost-90").hide();
extraCost90 = 0;
}
但我想在if語句中添加更多的選擇選項,現在我只是複製這個和編輯和過去的新規則,這是工作正常,
我可以在一個較短的wa ÿ?因爲現在我的網頁越來越長
我只想做這樣的事情:
if (personPValue == "4 Days Paris" && "3 Days London" && "3 Days Italy" numAantal == "1")
但不工作:(
IF 4天巴黎 & 4天倫敦 & 3天意大利被選中& 人比顯示DIV:#T-extracost-90
@ d3xt3r檢查更新回答 – Tushar
謝謝,它的工作原理! – d3xt3r
試試這個:'if((personPValue ==「4 Days Paris」|| personPValue ==「3 Days London」|| personPValue ==「3 Days Italy」)&& numAantal ==「1」)' – Tushar