<! DOCTYPE html>
<title> New Document </title>
<meta http-equiv= "Content-type" content= "text/html; Charset=utf-8 "/>
<script type= "Text/javascript" >
A new window opens with a confirmation box open
By entering the dialog box, determine the open URL, default to http://www.imooc.com/
The open window requires a width of 400 pixels, a height of 500 pixels, no menu bar, no toolbars.
function Openwindow () {
if (Confirm ("open?") ")){
var Confirmurl = prompt ("Please enter the address to open", "http://www.imooc.com/");
if (confirmurl!=null) {
window.open (Confirmurl, ' _blank ', ' width=400,height=500,menubar=no,toolbar=no ');
}else{
Alert ("Stop open! ");
}
}
else{
Alert ("You don't want to open it!" ");
}
}
</script>
<body>
<input type= "button" value= "new window open Web site" onclick= "Openwindow ()"/>
</body>
Make New button, "New window opens website", click Open New Window.