如何让跳出的链接对话框没有地址栏等,只有关闭按钮。。
如何让跳出的链接对话框没有地址栏等,只有关闭按钮。。
程序代码:<script>
function M(){
var Top=(window.screen.height-200)/2;
var Left=(window.screen.width-500)/2;
window.open("http://baidu.com/","window","height=200,width=500,top="+Top+",left="+Left+",fullscreen=0");
}
</script>
<a href="javascript:void(0);"onclick="M()">00000000</a>
