簡體   English   中英

帶有html5和JS的子窗口?

[英]Child window with html5 and JS?

在Silverlight中,可以通過單擊按鈕在應用程序中創建子窗口。 所以,我只是想知道....是否可以在html5中使用javascrip?

子窗口只是一個可以移動的窗口,它可以顯示諸如........與其他在線用戶進行文本聊天等內容。

當然, 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);
}

請記住,有些瀏覽器會阻止這種情況。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM