gpt4 book ai didi

JavaScript 引用错误 : Value is not defined

转载 作者:行者123 更新时间:2023-11-30 23:55:43 25 4
gpt4 key购买 nike

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

ReferenceError: heightStart is not defined

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 资源文件处理程序映射传入的值。 enter image description here

最佳答案

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

enter image description here

Read more

关于JavaScript 引用错误 : Value is not defined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61072433/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com