我有一个 onChange 事件,每当我预览它时,它都会不断显示下面的错误。
'对象不支持此属性或方法'
I have the onChange event associated with a picklist and when a specific option is selected another field is unhidden.
代码如下:
负载:
//If How did you hear about us is set to event show the Source Event lookup
crmForm.SourceEvent = function SourceEvent()
{
if (crmForm.all.gcs_howdidyouhearaboutus.DataValue == 5)
{
crmForm.all.gcs_sourceeventid_c.style.display = '' ;
crmForm.all.gcs_sourceeventid_d.style.display = '' ;
}
else
{
crmForm.all.gcs_sourceeventid_c.style.display = 'none' ;
crmForm.all.gcs_sourceeventid_d.style.display = 'none' ;
}
}
crmForm.SourceEvent() ;
改变
crmForm.SourceEvent() ;
如果有人可以让我知道为什么会出现此错误,那就太好了?
此外,表单预览上的一些 onChange 事件也发生了这种情况,但一旦发布到实时系统上,它就不会出错。有任何想法吗?
谢谢
布雷特