我有一个 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>