javascript如果语句没有识别空值

时间:2016-03-29 16:55:53

标签: javascript dynamics-crm-2011

我已创建并且if {} else {}但由于某种原因,它无法识别if {}语句中的空值,因此它不执行该代码。相反,它执行相反的操作并执行else {}代码。我没有正确使用null吗?

function CalculateItem2() 
{

    var item1 = Xrm.Page.getAttribute("new_step1amount").getValue();
    if (item1 == null) {
        item1 = 0;
    }

    var item2 = Xrm.Page.getAttribute("new_step2amount").getValue();
    if (item2 == null) {
        item2 = 0;
    }

    if(new_steponecontractrecieved.value!=null)
    {
    Xrm.Page.getAttribute("new_totalamountcollected").setValue(item2);
    } 
    else
    {
    Xrm.Page.getAttribute("new_totalamountcollected").setValue(item1+item2);
    }   
}

1 个答案:

答案 0 :(得分:0)

您可以使用基本的javascript检查,如

if(nameOfVariable) //Returns false if variable has null or blank or undefined as value
{

} 
else
{

}

来自CheezyCode的欢呼声