我有这段代码:
<button id="3" onclick="reply_click(this.id)">B3</button>
<script type="text/javascript">
function reply_click(clicked_id)
{
window.open('http://kedaikopichat.blogspot.com', 'poppage', 'toolbars=0, scrollbars=1, location=0, statusbars=0, menubars=0, resizable=1, width=1400, height=650, left = 300, top = 50');
}
</script>
在此处使用:beritakedaikopi.blogspot.com,点击右侧的聊天。
我的问题是:如何从顶部填充..我只想在弹出内容中显示聊天室和网络摄像头。我不希望标题“Kedai Kopi CHAT&amp; TV&amp; WEBCAM”包含。如何重新定位弹出内容?
答案 0 :(得分:1)
不是使用丑陋的弹出窗口,而是创建一个叠加DIV元素 Lightbox ,并使用AJAX和jQuery通过ID调用所需的内容:
$("#overlayElement").load("http://kedaikopichat.blogspot.com #HTML3");
答案 1 :(得分:0)
我首先删除空格。尝试
window.open('http://kedaikopichat.blogspot.com', 'poppage', 'toolbars=0,scrollbars=1,location=0,statusbars=0,menubars=0,resizable=1,width=1400,height=650,left=300,top=50');
来自documentation for strWindowFeatures
...
字符串不得包含任何空格,每个要素名称和值必须用逗号分隔。
top
的值是您如何定位窗口的上边缘。