下面是我想使用 html 项插入到我的 COGNOS 报告中的代码;
<html>
<head>
<script>
function openWindow()
{
windowObject = window.open('http://www.google.com/','_blank','width=400,height=700,status=yes,resizable=yes,scrollbars=yes');
windowObject.focus();//gives focus to window
}
</script>
</head>
<body>
<FORM METHOD="LINK" ONSUBMIT="openWindow()">
<INPUT TYPE="submit" VALUE="Info">
</FORM>
</body>
</html>
如果我将其复制并粘贴到 COGNOS Report Studio 中的一个 html 项目中,就会发生奇怪的事情并且它不起作用。有什么想法可以让它正常工作吗?在此先感谢您的帮助!