変数 CampaignType があり、その値は 0 です。しかし、アラート (二重星の内側) では 1 に変わります。なぜですか? ここに私のJavaScriptコードスニペットがあります
if (CampaignType != 2)
{
if (CampaignType = '1')
{
**alert(CampaignType);**
var CampaignAmount = (SelValue * CampaignPrice) / 100;
SelValue = SelValue - (CampaignAmount);
}
else if (CampaignType = '0')
{
SelValue = SelValue - CampaignPrice;
}
}