Javascript ReferenceError:未定义值

Dynamics我的以下函数在表单中触发时遇到以下错误。


ReferenceError:未定义 heightStart


function Start(type) {

    debugger;

    alert("Start | type: " + type);

    if (type == "heightStart") {

        var height = Xrm.Page.getAttribute("ccc_heightincmstart").getValue();

        if (height != null && height != "") {

            GetChildInfo(height, type);

        }

        else {

            Xrm.Page.getAttribute("ccc_heightpercentilestart").setValue("");

        }

    }

}

我可以知道如何解决此错误吗?


type是通过 Web 资源文件处理程序映射传入的值。

http://img.mukewang.com/62aa9c6400018e5107030536.jpg

慕村9548890
浏览 110回答 3
3回答

月关宝盒

您必须使用双引号传递参数,例如“heightStart”

慕森王

表单似乎Parameter将 heightStart 解释为变量。尝试将其用引号括起来;"heightStart"

翻过高山走不出你

因为你传递了 executioncontext 所以函数应该是function(executioncontext, type) ....
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript