2

我正在编写文档,并希望创建弹出窗口,如果他们愿意,可以为读者提供更多信息。但是,我用 window.open() 得到了不确定的结果。我在火狐。有时它可以工作,有时它不工作,有时它将窗口作为弹出窗口打开,有时它作为另一个选项卡打开。尝试输入诸如高度和宽度之类的参数使其不太可能起作用,尽管有时确实如此。我在这里做错了吗?以下工作并打开一个选项卡,但这并不是我真正想要的。

<script type="text/javascript">
function windoc(theurl) {
alert("got to windoc");
doc02 = window.open(theurl);
doc02.moveTo(0,0);
}
</script>

无论我是否使用“moveTo”,该窗口都会在选项卡中打开。

调用程序中的 HTML 都是文本 - 这是调用:

there is a bunch of text here <a style = "color:800517; 
width:300px" onclick = "windoc('doc02.cfm#personid')">What does this mean? </a>
more text here

这是目标:

<div class = "tipdoc">
<a name = "personid"></a>
there is text here blah, blah, blah...
4

0 回答 0