>  기사  >  웹 프론트엔드  >  자바스크립트 팝업 기본_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> 

프롬프트는 메시지 프롬프트 상자를 의미합니다

<!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()는 창을 닫습니다

위 내용은 에디터가 소개한 자바스크립트 팝업 기본 관련 내용입니다. 도움이 되셨으면 좋겠습니다!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.