在Silverlight中,可以通过单击按钮在应用程序中创建子窗口。所以,我只是想知道......是否可以在html5中使用javascrip?
子窗口只是一个可以移动的窗口,它可以显示诸如........与其他在线用户进行文本聊天等内容。
答案 0 :(得分:1)
当然,window.open
。
https://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);
}
请记住,有些浏览器会阻止此操作。