0

我有一个 js 代码来制作一个简单的弹出窗口,但我试图在弹出页面后对齐页面。这意味着一旦用户单击弹出链接,我只想显示页面的一部分。我不需要标题和侧边栏来显示页面的内容。

这可能吗?

这是我当前的代码。

<script type="text/javascript">
    // Popup window code
    function newPopup(url) {
            popupWindow = window.open(url,'popUpWindow','height=700,width=700,left=10,top=10,resizable=yes,scrollbars=yes,toolbar=yes,menubar=no,location=no,directories=no,status=yes')
    }
</script>

<a href="javascript:newPopup('<?php the_permalink() ?>');">Click here to Player</a>
4

1 回答 1

0

使用锚,例如

http://example.com/somepage.html#jump_to_here
                                ^^^^^^^^^^^^^

并在页面内:

<a name="jump_to_here">Yoohoo, here I am!</a>
于 2012-05-01T04:50:16.157 回答