1

我正在使用 cognos report studio,但在提示页面上出现错误。我让我的编码工作正常(我在一个空白页上对其进行了测试),但我注意到左下角有一个黄色的解释点,这不允许我继续我正在尝试做的事情。在此处输入图像描述

这是一个屏幕截图:

该错误似乎来自提示页面中的我的 html 标记。

这是我的编码:

<script type="text/javascript"> 
var theSpan = document.getElementById("FiscalYear"); 
var theSelect = theSpan.getElementsByTagName("select"); 
theSelect[0].options[2].selected=true; //This will make default value in prompt to be the first item after line, change the value '2' for other item 
theSelect[0].options[0].text = 'Fiscal Year'; 
listBoxBusinessDate.checkData(); 

</script>

我的错误应该来自那里,我只是不知道为什么。关于它可能是什么的任何想法?谢谢。

4

1 回答 1

1

这是一个 JavaScript 错误。您尝试使用“listBoxBusinessDate”的变量为空/未定义,因此当您尝试对其调用方法(.checkData())时,您会收到此错误。

这个变量在哪里定义(它不在您提供的片段中,但可以在文件的前面定义)......?

于 2012-08-23T19:12:40.490 回答