首页  >  文章  >  web前端  >  JavaScript弹窗基础篇_javascript技巧

JavaScript弹窗基础篇_javascript技巧

WBOY
WBOY原创
2016-05-16 15:03:381525浏览

confirm()意既确认框

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>confirm</title>
</head>
<body>
<script>
var con=confirm("do you like to study javascript&#63;");
if (con) {
document.write("I love javascript!");
}
else{
document.write("I love other lanuages!");
}
</script> 
</body>
</html> 

prompt意既消息提示框

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>confirm</title>
</head>
<body>
<script>
var pro=prompt("what is your name&#63;");
document.write(pro);
</script> 
</body>
</html> 

window.open(uri,name,attr)

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>confirm</title>
</head>
<body>
<a href="#" title="http://www.cnblogs.com/yuzheCyril/">click me</a>
<script>
var link=document.getElementsByTagName("a")[0];
link.onclick=function(){window.open(link.title,"blog","width=400px,height=400px");}
</script> 
</body>
</html> 

window.close()关闭窗口

以上所述是小编给大家介绍的JavaScript弹窗基础篇的相关内容,希望对大家有所帮助!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn