这是我的代码:
alert ("Current: " + crmForm.all.new_currentdate.DataValue);
alert ("Previous value: " + crmForm.all.new_date.DataValue);
if(crmForm.all.new_currentdate.DataValue != crmForm.all.new_date.DataValue )
{
crmForm.all.new_otherValue.DataValue = null;
alert("Nulling other value");
}
如您所见,我已经在开始时添加了警报以检查值,它们是相同的。但是,它仍会进入 IF 语句,并且也会显示第三个警报(Nulling other value)。有任何想法吗?这是在 MS Dynamics CRM 中。
谢谢