<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
var sina=confirm("是否打开:");
if(sina==true){
var a=""
var v1=prompt("请输入网址",a);
if(a!=null){
alert(v1);
window.open(v1,'width=400,height=500,toolbar=no,menubar=no');}
else{
alert("hello");}}
else{
window.close();
}
var sina=confirm("是否打开:");
if(sina==true){
var a="http://www.imooc.com"
var v1=prompt("请输入网址",a);//prompt的str2值可以自己手动输入,也可以设置默认值,也就是这里的变量a=地址
if(v1!=null){//这里的判断用prompt方法的返回值v1!=null来判断,v1的值就是输入的地址
alert(v1);
window.open(v1,'width=400,height=500,toolbar=no,menubar=no');}