汇总12之后无效。
var value = crmForm.all["new_state"].DataValue;
如果我选择单个选项,则此语法正常工作但当我在查找中选择多个选项时,它将返回“未定义”。
Xrm.Page.getAttribute("new_state").getValue();
答案 0 :(得分:0)
调试您的网站,尝试查看您的网站:
Xrm.Page.getAttribute("new_state")
在我看来你将拥有一些数组,以便获得你应该写的某个数组成员的值:
Xrm.Page.getAttribute("new_state")[0].getValue()