js中关闭弹窗
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档</title> <script type="text/javascript"> function message(){ confirm("请选择,您现在的职业!"); } function aceger(){ alert("请先输入姓名!"); } function bceger(){ alert("请先输入密码,再点击确认!"); } function cceger(){ confirm("是否已输入密码?已输入请按确认!"); if(confirm()==true){ //这里该怎么写,才能让弹窗关闭 } else{ return bceger(); } } </script> <style type="text/css"> *{margin:0; padding:0; font-size:14px; color:#03F;} #move{float:right; margin-right:10px;margin-top:-10px;} .pass{margin-top:5px;}/*div id="move",做css样式用#;div classs="pass"做css样式用.(英文的句号)*/ div:hover{color:#F00;} </style> </head> <body> 请选择您的职业:<br /> <form> <select name="changer" onfocus="message()"> <option>教师</option> <option>歌手</option> <option>演员</option> <option selected="selected">工程师</option><!--selected=""selected默认选中--> <option>律师</option> </select> <div id="move"> 姓名:<input name="username" type="text" value="请输入您的姓名" onblur="aceger()"/><br /> <div class="pass"> 密码:<input name="password" type="text" value="请输入密码" onmouseout="bceger()" /> <input name="button" type="button" value="确认" onclick="cceger()" /> </div> </div> </form> </body> </html>
代码第19行该写什么以达到点击弹窗的确认按钮后直接关闭弹窗