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>
私のエラーはそこから来ているはずです、私は理由を理解することができません。それが何であるかについてのアイデアはありますか?ありがとう。