我在Salesforce中的按钮上使用此代码 - onClick JavaScript:
这是正确的方法:
if('{!Account.CSS_CustomerID__c}' != 'null'){
//do something
}
我应该这样做 - 1
if('{!Account.CSS_CustomerID__c}' != null){
//do something
}
我应该这样做--2
if('{!Account.CSS_CustomerID__c}' !== null){
//do something
}
还是有其他方法吗?
答案:这对我有用
if('{!Account.CSS_CustomerID__c}' !== null){
//do something
}
答案 0 :(得分:1)
使用您的代码比较两个字符串。
也许您需要比较变量:
if(!Account.CSS_CustomerID__c != null)