jQuery
$('a.popup').click(function(){
window.open( this.href, 'Page title', 'width=600, height=650' );
return false;
});
HTML
<a class="popup" href="sample.html">
sample.html
如果我的页面在弹出窗口中打开,我想隐藏页眉和页脚。<html>
我可以在弹出窗口中添加类名<body>
吗?这样我就可以添加 CSS 规则。谢谢!