如何判断输入地址为空,prompt的str2如何获取
<!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();
}