使用带有javascript或jquery的window.open
弹出窗口时是否可以添加类?
答案 0 :(得分:0)
使用jQuery,您可以访问打开的窗口的属性。
var newWind = window.open('http://<url_here>', 'childWindow')
$j(newWind.document).find('html').addClass('opened-as-popup')
答案 1 :(得分:0)
另一种解决方案:
var WindowObject = window.open('');
WindowObject.document.write('<body class="newClass">');