function demo(){
var judge = confirm("是否打开窗口");
if(judge){
var value = prompt("请输入打开的网址","http://www.imooc.com");
if(value){
window.open(value,"_black","width=400,height=500,menubar=no,toolbr=no");
}
}
}
var judge = confirm("是否打开窗口");
if(judge){
var value = prompt("请输入打开的网址","http://www.imooc.com");
if(value){
window.open(value,"_black","width=400,height=500,menubar=no,toolbr=no");
}
}
}
<script type="text/javascript">
function Wopen()
{
window.open(
'http://www.taobao.com',
'_blank',
'top=100px,left=100px,width=100px,height=100px,menubar=yes,scrollbars=yes,toolbar=yes,status=yes'
);
</script>
function Wopen()
{
window.open(
'http://www.taobao.com',
'_blank',
'top=100px,left=100px,width=100px,height=100px,menubar=yes,scrollbars=yes,toolbar=yes,status=yes'
);
</script>
2015-06-11