带有html5和JS的子窗口?

时间:2012-10-10 03:47:57

标签: javascript html5

在Silverlight中,可以通过单击按钮在应用程序中创建子窗口。所以,我只是想知道......是否可以在html5中使用javascrip?

子窗口只是一个可以移动的窗口,它可以显示诸如........与其他在线用户进行文本聊天等内容。

1 个答案:

答案 0 :(得分:1)

当然,window.openhttps://developer.mozilla.org/en-US/docs/Web/API/Window.open

示例:

var windowObjectReference;
var strWindowFeatures = "menubar=yes,location=yes,resizable=yes,scrollbars=yes,status=yes";

function openRequestedPopup() {
  windowObjectReference = window.open("http://www.cnn.com/", "CNN_WindowName", strWindowFeatures);
}

请记住,有些浏览器会阻止此操作。