我正在使用 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>
我的错误应该来自那里,我只是不知道为什么。关于它可能是什么的任何想法?谢谢。