如何在具有自定义高度和宽度的新弹出窗口中更改窗口标题

时间:2015-08-14 01:29:24

标签: javascript jquery html css popup

下面是使用带有target =“popup”的onclick的代码,如何更改新弹出窗口的标题?

<a href="#" target="popup" 
  onclick="window.open('http://s.jiathis.com/qrcode.php?url=http%3A%2F%2Ftest12345.com','popup','width=220,height=220,scrollbars=no,resizable=no'); return false;">Open new window</a>

1 个答案:

答案 0 :(得分:1)

您需要保留对新打开的窗口的引用:

var winRef = window.open(...);
winRef.document.title = 'Custom title';

弹出窗口必须与开启者具有相同的来源(域名),或者至少具有正确的CORS标头集。这是一个工作示例: https://jsfiddle.net/c7x7ajv2/