jsp에서 <a>태그에 href값을 주면 get방식으로 넘어간다. 

하지만 post로 넘기고 싶다면?

=> onClick이벤트로 자바스크립트 함수를 추가하고 그 함수안에서 post로 넘기면 된다.

 

 

1. 컨트롤러로 넘기는 값이 없을때

(1) JSP (form 태그로 안감싸도 된다.)

1
<a href="javascript:void(0)" onClick="javascript:goPost()">클릭시 POST로 페이지 </a>
cs

(2) Javascript 함수 (method는 post, 컨트롤러 주소는 goPost.do)

1
2
3
4
5
6
7
function goPost(){
    let f = document.createElement('form');
    f.setAttribute('method''post');
    f.setAttribute('action''goPost.do');
    document.body.appendChild(f);
    f.submit();
}
cs

 

(3)Controller (goPost.do로 호출되고 post.jsp라는 페이지로 이동한다)

1
2
3
4
@PostMapping("goPost.do")
public String go_post(){
    return "post";
}
cs

 

전달하는 값은 없지만 굳이 PostMapping으로 페이지 이동을 해야할때 사용 

 

 

2. 컨트롤러로 넘기는 값이 있을때

(1) JSP (jstl 태그의 값을 인수로 넘겨준다고 쳤을때)

1
<a href="javascript:listView('${list.userid}')">유저아이디</a>
cs

이전에는 보통 다음과 같이 getMapping으로 넘어가도록 했었다.

1
<a href="getView.do?userid=${list.userid}">유저아</a>
cs

 

 

(2) Javascript 함수

hidden 타입의 input태그를 만들어서 그 value값에 전달하고자 하는 인수를 집어넣고, userid란 이름으로 넘기겠다는 뜻이다.

method는 post, 컨트롤러 주소는 view.do이다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function listView(userid){
    let f = document.createElement('form');
    
    let obj;
    obj = document.createElement('input');
    obj.setAttribute('type''hidden');
    obj.setAttribute('name''userid');
    obj.setAttribute('value', userid);
    
    f.appendChild(obj);
    f.setAttribute('method''post');
    f.setAttribute('action''view.do');
    document.body.appendChild(f);
    f.submit();
}
cs

 

(3)Controller

1
2
3
4
5
6
@PostMapping("view.do")
public String getView(String userid, Model model){
    User userView = userService.view(userid);
    model.addAttribute("userView", userView);
    return "view";
}
cs

 

 

'Learning > HTML&JavaScript' 카테고리의 다른 글

과제-반응형 웹 만들고 이력서와 회원가입 페이지 연결하기  (0) 2020.08.04
반응형 웹 디자인  (0) 2020.08.04
DOM, BOM  (0) 2020.08.04
자바스크립트 함수 2  (0) 2020.08.03
자바스크립트 함수 1  (0) 2020.07.31
  • mainTest.html (메인페이지). 자유형식으로 만들기

 

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>메인페이지</title>

    <link rel="stylesheet" href="mainTest.css">

</head>

<body>

    <div id="container">

    <nav>

        <ul>

            <li><a href="mainTest.html">Home</a></li>

            <li><a href="aboutme.html">About me</a></li>

            <li><a href="#contact">Contact</a></li>

            <li><a href="#lyrics1">Lyrics</a></li>

        </ul>

    </nav>

    <header></header>

    <section>

            <a href="https://c11.kr/h0uk"><img src="images/mrok.jpg" width="100px" height="100px" ></a>

            <a href="https://amongthestar.tistory.com"><img src="images/mrok.jpg" width="100px" height="100px" ></a>

        <article id="contact">

            <p><i>email</i>  </p>

            <p><i>phone</i>  +82 10 1234 5678</p>

            <p><i>homepage</i>  amongthestar.tistory.com</p>

        </article>

        <article id="bgc">

        <article id="lyrics1">

            <p><i>Coffee & TV</i></p>

            <p>Do you feel like a chain store?<br> Practically floored<br> One of many zeros<br> Kicked around, bored<br> Your ears are full but you're empty<br> Holding out your heart<br> To people who never really<br> Care how you are<br> So give me coffee and TV, peacefully<br> I've seen so much, I'm going blind<br> And I'm brain-dead virtually<br> Sociability<br> Is hard enough for me<br> Take me away from this big, bad world<br> And agree to marry me<br> So we can start over again<br> Do you go to the country?<br>

            It isn't very far<br> There's people there who will hurt you<br> 'Cause of who you are</p>

        </article>

        <article id="lyrics2">

            <p>Your ears are full of their language<br> There's wisdom there you're sure<br> 'Til the words start slurring<br> And you can't find the door<br> So give me coffee and TV, peacefully<br> I've seen so much, I'm going blind<br> And I'm brain-dead virtually<br> Sociability<br> Is hard enough for me<br> Take me away from this big bad world<br> And agree to marry me<br> So we can start over again<br> So give me coffee and TV, peacefully<br> I've seen so much, I'm going blind<br> And I'm brain-dead virtually<br> Sociability<br> Is hard enough for me<br> Take me away from this big bad world<br> And agree to marry me<br> So we can start over again<br> Oh, we can start over again<br> Oh, we can start over again<br> Oh, we can start over again<br> Oh, we can start over again</p>

        </article>

        </article>

    </section>

    <footer>

        <p>ⓒ</p>

        <p>amongthestar.tistory.com</p>

    </footer>

    </div>

</body>

</html>

 

  • mainTest.css

 

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300&family=Recursive:wght@300;400&display=swap');

body{

    font-family: 'Noto Sans KR', sans-serif;

}

#container{

    width: 950px;

    margin: 0 auto;

    border: 1px solid rgb(172, 172, 172);

}

header{

    width: 960px;

    height: 600px;

    background-image: url(images/1.JPG);

    background-repeat: no-repeat;

}

header:hover{

    opacity: 0.8;

}

nav ul{

    list-style: none;

}

nav ul li{

    display: inline;

    font-size: 0.9em;

    padding: 15px;

}

nav ul li a{

    color:rgb(93, 93, 93);

    text-decoration: none;

}

#contact{

    float: right;

    margin: 20px 20px;

    padding: 20px;

    width: 400px;

    height: auto;

    font-size: 0.9em;

    color: #666;

    text-align: right;

    border: 1px dotted #ccc;

}

#bgc{

    display: inline-block;

    width: 100%;

    height: auto;

    background-color: rgb(246, 246, 246);

}

#lyrics1{

    position: absolute;

    margin: 120px 80px;

}

#lyrics1 p{

    line-height: 1.8;

    padding: 20px;

    text-align: left;

    border: 1px dotted #ccc;

    color: #666;

}

#lyrics2{

    float: right;

    margin: 120px 80px;

    line-height: 1.8;

    padding: 20px;

    text-align: left;

    border: 1px dotted #ccc;

    color: #666;

} 

section img{

    position: relative;

    top: 50px;

    left: 50px;

    padding-right: 20px;

}

section img:hover{

    -webkit-filter: grayscale(100%); filter: gray;

}

article i{

    color: #ccc;

}

footer{

    clear: both;

    width: 100%;

    height: 80px;

    background-color: bisque;

    color: #666;

    font-size: 0.8em;

    text-align: center;

    margin: 0 auto;

    padding-top: 5px;

}

 

 


 

네비게이터에서 About me 클릭할 경우 이력서 페이지(aboutme.html)로 이동

 

  • aboutme.html

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>이력서</title>

    <link rel="stylesheet" href="aboutme.css">

</head>

<body>

    <div id="container">

    <header>

        <h2></h2>

        <h6></h6>

        <img src="images/ice.jpg" width="100" height="100">

    </header>

    <nav>

        <ul>

            <li><a href="#ac1">Who am I</a></li>

            <li><a href="#ac2">Experience</a></li>

            <li><a href="#ac3">Skills</a></li>

            <li><a href="#ac4">Education</a></li>

            <li><a href="join.html">Join</a></li>

        </ul>

    </nav>

    <section>

        <article id="ac1">

            <h3>Who am I?</h3>

            <p><i>phone</i> +82 10 1234 5678</p>

            <p><i>email</i> </p>

            <p><i>assignment</i></p>

        </article>

        <article id="ac2">

            <h3>Experience</h3>

            <p>경력사항</p>

        </article>

        <article id="ac3">

            <h3>Skills</h3>

            <p>Java, javascript, CSS, HTML, SQL</p>

        </article>

        <article id="ac4">

            <h3>Education</h3>

            <p></p>

        </article>

    </section>

    <footer>

        <p>ⓒ</p>

        <p>amongthestar.tistory.com</p>

    </footer>

    </div>

</body>

</html>

 

  • aboutme.css

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300&family=Recursive:wght@300;400&display=swap');

body{

    font-family: 'Noto Sans KR', sans-serif;

}

#container{

    width: 90%;

    margin: 0 auto;

    border: 1px solid rgb(172, 172, 172);

}

header{

    width: 100%;

    height: 200px;

    background-image: url(images/photo.png);

    background-size: 150px 150px;

    background-repeat: no-repeat;

    background-position: 5% 50%;

    background-color: blanchedalmond;

}

header img{

    position: absolute;

    top: 60px;

    right: 120px;

    border-radius: 10px;

}

header h2{

    position: relative;

    margin: 0 auto;

    padding: 30px;

    text-align: center;

    font-size: 2em;

    color: rgb(56, 56, 56);

}

header h6{

    position: relative;

    margin: 0 auto;

    text-align: center;

    font-size: 1em;

    color: rgb(56, 56, 56);

}

nav{

    width: 100%;

    height: auto;

    background-color: rgb(255, 255, 255);

    border-bottom: 1px solid #ccc;

    color: white;

    display: inline-block;

}

nav ul{

    list-style: none;

}

nav ul li{

    display: inline;

    font-size: 1em;

}

nav ul li a{

    color:rgb(93, 93, 93);

    text-decoration: none;

    padding: 5px 25px 5px 25px;

}

section{

    margin: 0 auto;

}

article{

    float: left;

    width: 330px;

    height: 200px;

    border: 1px dotted rgb(175, 175, 175);

    padding: 10px;

    margin: 20px;

}

article p{

    font-size: 0.9em;

    margin: 20px;

}

article h3{

    width: 90%;

    margin: 10px auto;

    background-color: #eee;

    color: rgb(56, 56, 56);

    font-size: 0.9em;

    text-align: center;

    padding-top: 10px;

    height: 30px;

}

footer{

    clear: both;

    width: 100%;

    height: 80px;

    background-color: blanchedalmond;

    color: rgb(56, 56, 56);

    font-size: 0.8em;

    text-align: center;

    margin: 0 auto;

    padding-top: 5px;

}

 

 

 


 

네비게이터에서 Join 클릭할 경우 회원가입 페이지(join.html)로 이동

 

  • join.html

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>회원가입</title>

    <link rel="stylesheet" href="join.css">

</head>

<body>

    <div id="container">

    <h1>회원 가입</h1>

    <form action="#">

        <fieldset>

            <legend>로그인 정보</legend>

            <ul id="login-info">

                <li>

                    <label for="userid" class="field">아이디</label>

                    <input type="text" id="userid" placeholder="4~8글자 입력" required onchange="checkId()">

                </li>

                <li>

                    <label for="user-pw1" class="field">비밀번호</label>

                    <input type="password" id="user-pw1" placeholder="8자리 이상" required onchange="checkPw()">

                </li>

                <li>

                    <label for="user-pw2" class="field">비밀번호 확인</label>

                    <input type="password" id="user-pw2" required onchange="comparePw()">

                </li>

            </ul>

        </fieldset>

        <fieldset>

            <legend>개인 정보</legend>

            <ul id="personal-info">

                <li>

                    <label for="name" class="field">이름</label>

                    <input type="text" id="name" required>

                </li>

                <li>

                    <label for="email" class="field">메일 주소</label>

                    <input type="email" id="email" required>

                </li>

                <li>

                    <label for="tel" class="field">연락처</label>

                    <input type="tel" id="tel" required>

                </li>

                <li>

                    <label for="blog" class="field">블로그/홈페이지</label>

                    <input type="url" id="blog">

                </li>

            </ul>

        </fieldset>

        <div id="buttons">

            <button type="submit">가입하기</button>

            <button type="reset">취소</button>

        </div>

    </form>

    </div>

    <script src="join.js"></script>

</body>

</html>

 

  • join.css

#container{

    width: 70%;

    margin: 0 auto;

}

ul{

    list-style: none;

}

ul li{

    clear: both;

}

.field {

    float: left;

    width: 30%;

    line-height: 40px;

    text-align: right;

    margin-right: 15px;

}

input[type="text"],input[type="email"],input[type="password"], input[type="tel"],input[type="url"]{

    float: left;

    width: 35%;

    border: 1px solid #666;

    border-radius: 2px;

    padding: 5px;                 

    margin: 8px 0;

}

#buttons{

    clear: both;

    margin: 0 auto;

    width: 100%;

    text-align: center;

    padding-top: 15px;

}

button{

    width: 280px;

    height: 50px;

    border: 1px solid #ccc;

    background: #eee;

    font-size: 0.9em;

    border-radius: 2px;

}

button[type=submit]{

    background-color: blanchedalmond;

    color: #666;

}

 

  • join.js

function openJoin(){

    var newWin=window.open("join.html", "", "");

    if(newWin==null){

        alert("팝업이 차단되어 있습니다. 차단을 해제하고 새로고침을 하세요.");

    }

}



var userId=document.querySelector("#userid");

var pw1=document.querySelector("#user-pw1");

var pw2=document.querySelector("#user-pw2");



userId.onChange=checkId;

pw1.onChange=checkPw;

pw2.onChange=comparePw;



function checkId(){

    if(userId.value.length<4 || userId.value.length>8){

        alert("4~8자리 영문과 숫자 사용");

        userId.focus();

    }

}``

function checkPw(){

    if(pw1.value.length<8){

        alert("비밀번호는 8글자 이상이어야 합니다.");

        pw1.value="";

        pw1.focus();

    }

}

function comparePw(){

    if(pw1.value != pw2.value){

        alert("비밀번호가 일치하지 않습니다.");

        pw2.value="";

        pw2.focus();

    }

}

 

 

 

 

 

 

 

 

 

 

'Learning > HTML&JavaScript' 카테고리의 다른 글

Post 방식으로 페이지 이동하기  (0) 2021.03.30
반응형 웹 디자인  (0) 2020.08.04
DOM, BOM  (0) 2020.08.04
자바스크립트 함수 2  (0) 2020.08.03
자바스크립트 함수 1  (0) 2020.07.31
  • 반응형 웹 디자인: 웹 사이트의 내용을 유지하면서 다양한 화면 크기에 맞게 웹 사이트 표시

  • 뷰포트(viewport): 실제 내용이 표시되는 영역. 

  • 그리드 시스템: 화면을 여러 개의 칼럼을 나누고 필요할때마다 칼럼들을 묶어 배치하는 방법

  • 가변 그리드 레이아웃: 전체를 감싸는 요소의 너비를 %로 변환

 

 

 

  • 고정 그리드 레이아웃

<!doctype html>

<html lang="ko">

<head>

<meta charset="utf-8">

<title>Fixed Grid Layout</title>

<style>

    #wrapper{

        width: 960px;

        margin: 0 auto;

    }

    header{

        width: 960px;

        height: 120px;

        background-color: aqua;

        border-bottom: 1px solid black;

    }

    .header-text{

        font-size: 40px;

        color: white;

        text-align: center;

        line-height: 120px;

    }

    .content{

        float: left;

        width: 600px;

        height: 400px;

        padding: 15px;

        background-color: yellow;

    }

    .right-side{

        float: right;

        width: 300px;

        padding: 15px;

        height: 400px;

        background-color: thistle;

    }

    footer{

        clear: both;

        height: 120px;

        background-color: yellowgreen;

    }

</style>

</head>



<body>

    <div id="wrapper">

        <header>

            <h1 class="header-text">고정 그리드 레이아웃</h1>

        </header>

        <section class="content">

            <h4>본문</h4>

        </section>

        <aside class="right-side">

            <h4>사이드바</h4>

        </aside>

        <footer>

            <h4>푸터</h4>

        </footer>

    </div>

</body>

</html>

 

 

 


 

  • 가변 그리드 레이아웃

 

<!doctype html>

<html lang="ko">

<head>

<meta charset="utf-8">

<title>Fluid Grid Layout</title>

<meta name="viewport" content="width=device-width, initial-scale=1">

<style>

    #wrapper{

        width: 96%;

        margin: 0 auto;

    }

    header{

        width: 100%;

        height: 120px;

        background-color: teal;

        border-bottom: 1px solid black;

    }

    .header-text{

        font-size: 32px;

        color: white;

        text-align: center;

        line-height: 120px;

    }

    .content{

        float: left;

        width: 62.5%;

        height: 400px;

        padding: 1.5625%;

        background-color: violet;

    }

    .right-side{

        float: right;

        width: 31.25%;

        height: 400px;

        padding: 1.5625%;

        background-color: thistle;

    }

    footer{

        clear: both;

        height: 120px;

        background-color: yellowgreen;

    }

</style>

</head>



<body>

    <div id="wrapper">

        <header>

            <h1 class="header-text">가변 그리드 레이아웃</h1>

        </header>

        <section class="content">

            <h4>본문</h4>

        </section>

        <aside class="right-side">

            <h4>사이드바</h4>

        </aside>

        <footer>

            <h4>푸터</h4>

        </footer>

    </div>

</body>

</html>

 

 


 

  • 가변 이미지

.content img{

        max-width: 100%;

        height: auto;

    }

 

 

 


 

 

  • 문서 객체 모델(Document Object Model, DOM)

  • 객체를 사용해 문서를 해석. 웹 문서의 요소를 부모/자식으로 구분. 

 

 

  • 인터넷 상품 페이지 (작은 사진 클릭하면 크게 보이기, 상세 설명 보기)

 

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Document</title>

    <link rel="stylesheet" href="css/dom.css">

</head>

<body>

    <div id="container">

        <h1 id="heading">에디오피아 게뎁</h1>

        <div id="prod-pic">

            <img src="images/coffee-pink.jpg" alt="에디오피아 게뎁" id="cup" width="200" height="200">

            <div id="small-pic">

                <img src="images/coffee-pink.jpg" class="small">

                <img src="images/coffee-blue.jpg" class="small">

                <img src="images/coffee-gray.jpg" class="small">

            </div>

        </div>

        <div id="desc">

            <ul>

                <li>상품명: 에디오피아 게뎁</li>

                <li class="bluetext">판매가: 9,000원</li>

                <li>배송비: 3,000원<br>(50,000원 이상 구매 시 무료)</li>

                <li>적립금: 180원(2%)</li>

                <li>로스팅: 2019.06.17</li>

                <button>장바구니 담기</button>

            </ul>

            <a href="#" id="view">상세 설명 보기</a>

        </div>

        <div id="detail">

            <hr>

            <h2>상품 상세 정보</h2>

            <ul>

                <li>원산지: 에디오피아</li>

                <li>지  역: 이르가체프 코체레</li>

                <li>농  장: 게뎁</li>

                <li>고  도: 1,950~2,000</li>

                <li>품  종: 지역 토착종</li>

                <li>가공법: 워시드</li>

            </ul>

            <h3>Information</h3>

            <p>2차 세계대전 이후 설립된 게뎁 농장은 유기농 인증 농장으로 여성의 고용 창출과 지역사회 발전에 기여하며 3대째 이어져 내려오는 오랜 역사를 가진 농장입니다. 게뎁 농장은 SCAA 인증을 받은 커피 품질관리 실험실을 갖추고 있어 철저한 관리를 통해 스페셜티 커피를 생산 합니다.</p>

            <h3>Flavor Note</h3>

            <p>은은하고 다채로운 꽃향, 망고, 다크 첼리, 달달함이 입안 가득.</p>

        </div>

    </div>

    <script src="js/dom.js"></script>

</body>

</html>

 

 

  • dom.css

 

#container{

    width: 600px;

    margin: 0 auto;

}

#prod-pic, #desc{

    float: left;

}

#prod-pic{

    margin: 20px 20px auto 10px;

    padding: 0;

}

#cup{

    box-shadow: 1px 1px 2px #eee;

    outline: 1px dashed #ccc;

    outline-offset: -7px;

}

.small{

    width: 60px;

    height: 60px;

}

#small-pic{

    list-style: none;

    margin-top: 20px;

    padding: 0;

}

#small-pic>li{

    float: left;

    margin-right: 10px;

}

#small-pic img:hover{

    cursor: pointer;

}

#desc{

    width: 300px;

    padding-top: 20px;

    margin-bottom: 50px;

}

.bluetext{

    color: blue;

    font-weight: bold;

}

#desc button{

    margin-top: 20px;

    margin-bottom: 20px;

    width: 100%;

    padding: 10px;

}

#desc ul{

    list-style: none;

}

#desc li{

    font-size: 0.9em;

    line-height: 1.8;

}

#desc a{

    text-decoration: none;

    font-size: 0.9em;

    color: blue;

    padding-left: 40px;

}

hr{

    clear: both;

    border: 1px dashed #f5f5f5;

}

#detail{

    padding-top: 10px;

    display: none;

}

#detail li{

    font-size: 0.9em;

    line-height: 1.4;

}

h1{

    font-size: 2em;

}

h2{

    font-size: 1.5em;

    color: #bebebe;

    font-weight: normal;

}

h3{

    font-size: 1.1em;

    color: #222;

}

p{

    font-size: 0.9em;

    line-height: 1.4;

    text-align: justify;

}

 

 

  • dom.js

var bigPic=document.querySelector("#cup"); //큰 이미지 가져오기

var smallPic=document.querySelectorAll(".small"); //작은 이미지 가져오기



for(var i=0;i<smallPic.length;i++){

    // var newPic=this.src; //클릭 이벤트가 발생한 대상의 src 속성 저장

    // bigPic.setAttribute("src", newPic); //newPic 값을 큰 이미지의 src 속성에 할당

    // smallPic[i].onclick=changePic;



    smallPic[i].addEventListener("click", changePic);

}



function changePic(){

    var newPic=this.src;

    bigPic.setAttribute("src",newPic);

}



var isOpen=false;

var view=document.querySelector("#view");

view.addEventListener("click",function(){

    if(isOpen==false){

        document.querySelector("#detail").style.display="block";

        view.innerText="상세 설명 닫기"

        isOpen=true;

    }else{

        document.querySelector("#detail").style.display="none";

        view.innerText="상세 설명 보기"

        isOpen=false;

    }

});

 

 

 

 


 

  • 브라우저 객체 모델 (Browser Object Model, BOM)

  • Window, Navigator, history, location, screen

 

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Document</title>

    <script>

        var info=navigator.userAgent.toLowerCase();

        var osImg=null;



        if(info.indexOf('windows')>=0){

            osImg="windows.png";

        }else if(info.indexOf('macintosh')>=0){

            osImg="macintosh.png";

        }else if(info.indexOf('iphone'>=0)){

            osImg="iphone.png";

        }else if(info.indexOf('android')>=0){

            osImg="android.png";

        }

        document.write("<img src=\"../0803/images/"+osImg+"\">","<br>");

        var scr=screen;

        var sc_w=scr.width;

        var sc_h=scr.height;



        document.write("모니터 해상도 너비:"+sc_w+"px","<br>");

        document.write("모니터 해상도 높이:"+sc_h+"px","<br>");

    </script>

</head>

<body>

</body>

</html>

 

 


 

  • 팝업창 뜨도록 함

  • bom2.html

 

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Document</title>

</head>

<body>

    <p>이 문서가 열리면 자동으로 팝업 창이 표시 됩니다.</p>

</body>

    <script src="js/pop.js"></script>

</html>

 

 

  • pop.js

function openPop(){

    var newWin=window.open("popup.html","","width=400, height=400");

    if(newWin==null){

        alert("팝업이 차단되어 있습니다. 차단을 해제하고 새로고침을 하세요.");

    }

}

window.onload=openPop;

 

  • popup.html

 

<!DOCTYPE html>



<html lang="ko">

<head>

    <meta charset="utf-8" />

    <title>location 객체</title>   

    <link rel="stylesheet" href="css/popup.css">     

</head>

<body>

    <div id="content">

        <h1>공지사항</h1>

        <p>팝업 창에 표시되는 내용</p>

        <p>팝업 창에 표시되는 내용</p>

        <p>팝업 창에 표시되는 내용</p>

        <p>팝업 창에 표시되는 내용</p>

        <p>팝업 창에 표시되는 내용</p>

        <button id="detail"><a href="#">자세히 보기</a></button>   

        <p id="close"><a href="javascript:window.close();">창닫기</a></p>

    </div>

</body>

</html>

 

 

 

 

 

 

  • return 값이 있는 경우 함수

 

 

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Document</title>

    <script>

        function addNum(a,b){

            var sum=a+b;

            return sum;

        }

        var num1=parseInt(prompt("첫번째 숫자?"));

        var num2=parseInt(prompt("두번째 숫자?"));

        var result=addNum(num1,num2);

        alert("두 수를 더한 값은 "+result+" 입니다.");

    </script>

</head>

<body>

    

</body>

</html>

 


 

  • return값이 없는 함수

 

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Document</title>

    <script>

        var myVal=100; //전역변수

        test();

        document.write("myVal is"+myVal);



        function test(){

            var myVal=50; //지역변수

        }

    </script>

</head>

<body>

    

</body>

</html>

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Document</title>

    <script>

        var myVal=100; //전역변수

        test();

        document.write("myVal is"+myVal);



        function test(){

            // var myVal=50; //지역변수

            myVal=50;

        }

    </script>

</head>

<body>

    

</body>

</html>

 

 


  • 사진 위에 버튼을 누르면 설명 보기, 닫기 버튼 누르면 설명 닫기

 

  • fun_event.html

 

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>민들레</title>

    <link rel="stylesheet" href="css/event.css">

    <script src="js/event.js"></script>

</head>

<body>

    <div id="item">

        <img src="images/flower1.jpg" alt="민들레 꽃">

        <button class="over" id="open" onclick="showDetail()">상세 설명 보기</button>

        <div id="desc" class="detail">

            <h4>민들레</h4>

            <p>어디서나 매우 흔하게 보이는 잡초로써 바닥에 딱 붙어서 꽃봉오리 하나가 쏙 올라온다.톱니 모양의 입새와 눈에 확 띄는 노란 꽃이 인상적이다. 특히 꽃이 지고나면 솜털모양의 깃을 가진 씨앗들이 나오는데 바람을 타고 날아가서 널리 퍼진다.</p>

            <button id="close" onclick="hideDetail()">상세 설명 닫기</button>

        </div>

    </div>

</body>

</html>

 

 

  • event.css

#item{

    position: relative;

    width: 500px;

    height: auto;

    padding: 15px 20px;

    margin: auto;

}

button{

    background-color: rgba(255, 255, 255, 0.7);

    padding: 5px;

    border: 1px solid #ccc;

    font-size: 0.8em;

}

.over{

    position: absolute;

    left: 30px;

    bottom: 30px;

}

.detail{

    width: 400px;

    text-align: left;

    line-height: 1.8em;

    display: none;

}

 

 

  • event.js

function showDetail(){

    document.querySelector('#desc').style.display="block";

    document.querySelector('#open').style.display="none";

}



function hideDetail(){

    document.querySelector('#desc').style.display="none";

    document.querySelector('#open').style.display="block";

}

 

 

 

 


 

  • 두 수를 입력받고 더 큰 수를 알림 창에 표시

 

<!DOCTYPE html>

<html lang="ko">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <meta http-equiv="X-UA-Compatible" content="ie=edge">

    <title>연습문제 2</title>

    <script>

        function compare(a,b){

            if(a>b){

                alert(a+"(이)가 "+b+"보다 큽니다.")

            }else if(a==b){

                alert(a+"(이)가 "+b+"와 같습니다.")

            }else if(a<b){

                alert(b+"(이)가 "+a+"보다 큽니다.")

            }

        }

        var num1=parseInt(prompt("첫번째 수"));

        var num2=parseInt(prompt("두번째 수"));

        compare(num1, num2);

    </script>

</head>

<body>

    

</body>

</html>


 

  • date객체 활용하여 기념일 달력 만들기

 

<script> 표시할 내용

  • 오늘날짜 Date객체

  • 처음 만난 날 Date 객체

  • 오늘 날짜를 밀리초로 변경

  • 처음 만난 날 밀리초로 변경

  • 두 밀리 초 사이의 차이 계산

  • 결과 값을 날짜 수로 변경

  • 화면에 결과 표시

 

 

  • date_obj.html

 

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>기념일 달력</title>

    <link rel="stylesheet" href="css/d-day.css">

</head>

<body>

    <div class="container">

        <div class="day1">

            <h3>우리 만난 지</h3>

            <p id="accent" class="accent"><span style="font-size: 0.6em">며칠?</span></p>

        </div>

        <div class="bar">기념일 계산</div>

        <div class="day2">

            <ul>

                <li class="item-title">100일</li>

                <li class="item-date" id="date100"> </li>

            </ul>

            <ul>

                <li class="item-title">200일</li>

                <li class="item-date" id="date200"> </li>

            </ul>

            <ul>

                <li class="item-title">1년</li>

                <li class="item-date" id="date365"> </li>

            </ul>

            <ul>

                <li class="item-title">500일</li>

                <li class="item-date" id="date500"> </li>

            </ul>

        </div>

    </div>

    <script src="js/d-day.js"></script>

</body>

</html>

 

 

  • d-day.css

 

*{

    box-sizing: border-box;

}

.container{

    width: 450px;

    margin: 0 auto;

    border: 1px solid #ccc;

    border-radius: 2%;

    box-shadow: 2px 2px 5px #ccc;

}

.day1{

    padding-top: 20px;

    text-align: center;

}

.day1 h3{

    font-size: 1.2em;

    color: #666;

}

.accent{

    margin-left: 10px;

    margin: 10px;

    font-weight: bold;

    font-size: 3em;

    color: #666;

}

.bar{

    width: 100%;

    height: 40px;

    margin: 60px auto 0 auto;

    background: #666;

    padding-left: 15px;

    font-size: 1.2em;

    color: #fff;

    line-height: 40px;

}

.day2{

    width: 420px;

    margin: 20px auto 20px auto;

}

.day2 ul{

    list-style: none;

    border-bottom: 1px dashed #ccc;

    height: 60px;

}

.item-title{

    float: left;

    width: 160px;

    font-weight: bold;

    font-size: 1.5em;

    line-height: 60px;

}

.item-date{

    float: left;

    margin-left: 60px;

    font-size: 1.2em;

    color: #222;

    text-align: right;

    line-height: 60px;

}



  • d-day.js

 

var now=new Date(); //오늘 날짜 정보를 date객체의 인스턴스 now객체로 만듦

var firstDay=new Date("2020-05-22"); //처음 만난 날



var toNow=now.getTime(); //오늘 날짜를 밀리초로 변경

var toFirst=firstDay.getTime(); //처음 만난 날을 밀리초로 변경



var passedTime=toNow-toFirst; //처음 만난 날과 오늘 날짜의 차이 (밀리초)

var passedDay=Math.round(passedTime/(1000*60*60*24)); //밀리초를 일로 변환 후 반올림



document.querySelector('#accent').innerText=passedDay+"일";



calcDate(100);

calcDate(200);

calcDate(365);

calcDate(500);



function calcDate(days){

    var future=toFirst+days*(1000*60*60*24); //처음 만난 날에 밀리초를 날로 바꾸어서 더함

    var someday=new Date(future); //future값을 사용한 Date 객체의 인스턴스

    var year=someday.getFullYear(); //연도

    var month=someday.getMonth()+1; //월

    var date=someday.getDate(); //일

    document.querySelector("#date"+days).innerText=year+"년 "+month+"월 "+date+"일";

}

 

 

 


 

 

'Learning > HTML&JavaScript' 카테고리의 다른 글

반응형 웹 디자인  (0) 2020.08.04
DOM, BOM  (0) 2020.08.04
자바스크립트 함수 1  (0) 2020.07.31
자바스크립트 객체  (0) 2020.07.31
자바스크립트 제어문  (0) 2020.07.31
  • 전역변수와 지역변수

<!DOCTYPE html>

<html lang="ko">

<head>

<meta charset = "UTF-8">

<title> 함수 </title>

<script>

    var num=100;

    function menu(){

        num+=100;

        alert(num);

    }

    menu();



    function menu(){

        alert(num);

    }

    

</script>

</head>

<body>

</body>

</html>

 

처음엔 200, 두번째엔 100이 출력됨

 


 

 

  • 익명 함수 선언

 

<!DOCTYPE html>

<html lang="ko">

<head>

<meta charset = "UTF-8">

<title> 함수 </title>

<script>

    var count = 0;

    myFunc();



    function myFunc(){ //정상적인 함수 정의

        count++;

        document.write("hello"+count,"<br>");

    }



    myFunc();



    var theFunc=function(){ //익명 함수 선언

        count++; 

        document.write("bye"+count,"<br>");

    }



    theFunc();

</script>

</head>

<body>

</body>

</html>

 


 

  • 배경색 바꾸기

 

<!DOCTYPE html>

<html lang="ko">

<head>

<meta charset = "UTF-8">

<title> 함수 </title>

<script>

    var color=["white", "yellow", "aqua", "purple"];

    var i=0;

    function changeColor(){

        i++;

        if(i>color.length) {

            i=0;

        }

        var bodyTag=document.getElementById("theBody");

        bodyTag.style.backgroundColor=color[i];

    }

</script>

</head>

<body id="theBody">

  <button onclick="changeColor();">배경색 바꾸기</button>

</body>

</html>

 


 

 

 

'Learning > HTML&JavaScript' 카테고리의 다른 글

DOM, BOM  (0) 2020.08.04
자바스크립트 함수 2  (0) 2020.08.03
자바스크립트 객체  (0) 2020.07.31
자바스크립트 제어문  (0) 2020.07.31
자바스크립트  (0) 2020.07.24
  • 객체 종류

    • 내장 객체: String, Date, Array, Math...

    • 브라우저 객체 모델: window, screen, location, history, navigator...

    • 문서 객체 모델: html, head, body...


  • 객체 메소드 호출

 

<!DOCTYPE html>

<html lang="ko">

<head>

<meta charset = "UTF-8">

<title> 배열객체 </title>

<script>

    var tv=new Object();

    tv.color="white";

    tv.price=300000;

    tv.info=function(){

        document.write("tv색상:"+this.color,"<br>");

        document.write("tv가격:"+this.price,"<br>");

    }

    var car={

        color:'black',

        price:500000,

        info: function(){

            document.write("car색상:"+this.color,"<br>");

            document.write("car가격:"+this.price,"<br>");

        }

    }

    document.write("<h1>tv객체 메서드 호출</h1>");

    tv.info();



    document.write("<h1>car객체 메서드 호출</h1>");

    car.info();

</script>

</head>

<body>

</body>

</html>

 


 

  • 수학객체

 

<!DOCTYPE html>

<html lang="ko">

<head>

<meta charset = "UTF-8">

<title> 수학객체 </title>

<script>

    var num = 2.1234;

    minNum=Math.min(10,4,5,6,20);

    roundNum=Math.round(num);

    floorNum=Math.floor(num);

    ceilNum=Math.ceil(num);

    rndNum=Math.random();

    piNum=Math.PI;



    document.write(minNum+"<br>");

    document.write(roundNum+"<br>");

    document.write(floorNum+"<br>");

    document.write(ceilNum+"<br>");

    document.write(rndNum+"<br>");

    document.write(piNum+"<br>");

</script>

</head>

<body>

</body>

</html>

 


 

  • 날짜 정보 객체

 

<!DOCTYPE html>

<html lang="ko">

<head>

    <meta charset = "UTF-8">

    <title> 날짜 정보 객체 </title>

    <script>

        var today=new Date();

        var nowMonth=today.getMonth(); //현재 월

        nowDate=today.getDate(); //현재 날짜

        nowDay=today.getDay(); //현재 요일

        document.write("<h1>오늘 날짜 정보</h1>")

        document.write(nowMonth+1+"월 ");

        document.write(nowDate+"일 ");

        var strDay="";

        switch(nowDay){

            case 1:strDay="월요일"; break;

            case 2:strDay="화요일"; break;

            case 3:strDay="수요일"; break;

            case 4:strDay="목요일"; break;

            case 5:strDay="금요일"; break;

            case 6:strDay="토요일"; break;

            case 7:strDay="일요일"; break;

        }

        document.write(strDay);

    </script>

</head>

<body>

</body>

</html>


 

  • 컴퓨터가 랜덤으로 내는 가위, 바위, 보 맞추기

 

<!DOCTYPE html>

<html lang="ko">

<head>

<meta charset = "UTF-8">

<title> 수학객체 </title>

<script>

    document.write("<h1>컴퓨터 가위, 바위, 보 맞추기</h1>");

    var game=prompt("가위, 바위, 보 중에 선택", "가위");

    var gameNum=0;

    switch(game.trim()){

        case "가위": gameNum=1; break;

        case "바위": gameNum=2; break;

        case "보": gameNum=3; break;

        default : alert("잘못 입력"); location.reload();

    }

    var comNum=Math.ceil(Math.random()*3);

    document.write("<image src=\images/math_img_"+comNum+".jpg\>");

    if(gameNum==comNum){

        document.write("<image src=\images/game_1.jpg\>");

    }else{

        document.write("<image src=\images/game_2.jpg\>");

    }

</script>

</head>

<body>

</body>

</html>

 


 

 

  • 배열객체 값 가져오기

 

<!DOCTYPE html>

<html lang="ko">

<head>

<meta charset = "UTF-8">

<title> 배열객체 </title>

<script>

   var arr=[30, "따르릉", true];

   document.write("<h3>배열값 가져오기</h3>");

   document.write(arr[0],"<br>");

   document.write(arr[1],"<br>");

   document.write(arr[2],"<br>");



   document.write("<h3>배열값 가져오기-2</h3>");

   for(var i=0;i<arr.length;i++){

        document.write(arr[i],"<br>");

   }

   document.write("<h3>배열값 가져오기-3</h3>");

   for(i in arr){

        document.write(arr[i],"<br>");

   }



</script>

</head>

<body>

</body>

</html>

 


 

  • 배열객체

 

<!DOCTYPE html>

<html lang="ko">

<head>

<meta charset = "UTF-8">

<title> 배열객체 </title>

<script>

    var arr_1 = ["사당", "교대", "방배", "강남"];

    var arr_2 = ["신사", "압구정", "옥수"];

    var greenArr=["교대", "방배", "강남"];

    var yellowArr=["미금", "정자", "수서"];



    var result=arr_1.join("-"); //지정값으로 문자열 연결

    document.write(result,"<br>");



    result=arr_1.concat(arr_2); //배열 연결

    document.write(result,"<br>"); 



    result=arr_1.slice(1,3);

    document.write(result,"<br>");



    arr_1.sort(); //오름차순 정렬

    document.write(arr_1,"<br>"); 



    arr_2.reverse(); //거꾸로 정렬

    document.write(arr_2,"<br>"); 



    greenArr.splice(2,1,"서초","역삼"); //2번부터 하나만 삭제하고 서초와 역삼을 추가

    document.write(greenArr,"<br>");



    var data1=yellowArr.pop();

    document.write(data1,"<br>");



    var data2=yellowArr.shift(); //맨 앞의 값 삭제

    document.write(yellowArr);

</script>

</head>

<body>

</body>

</html>


 

  • 문자객체

 

<!DOCTYPE html>

<html lang="ko">

<head>

<meta charset = "UTF-8">

<title> 문자 객체 </title>

<script>

    var name=prompt("이름을 영어로 입력");

    var tel=prompt("전화번호 입력");

    var upperName=name.toUpperCase();

    document.write(upperName,"<br>");



    var result_tel=tel.substring(0, tel.length-4)+"****";

    document.write(result_tel);

</script>

</head>

<body>

</body>

</html>

 

 

'Learning > HTML&JavaScript' 카테고리의 다른 글

자바스크립트 함수 2  (0) 2020.08.03
자바스크립트 함수 1  (0) 2020.07.31
자바스크립트 제어문  (0) 2020.07.31
자바스크립트  (0) 2020.07.24
CSS3 선택자  (0) 2020.07.24

 

  • if else문

 

 

 

 

 


 

  • if else문과 confirm 객체

 

<!DOCTYPE html>

<html lang="ko">

<head>

<meta charset="UTF-8">

<title> else문 </title>

<script>

    var result=confirm("정말 탈퇴를 하겠습니까?");

    if(result){

        document.write("탈퇴 처리 완료");

    }else{

        document.write("탈퇴 취소");

    }

</script>

</head>

<body>

</body>

</html>

 

확인버튼=true

 

 

 

 

취소버튼=false

 

 


 

  • 처리 조건이 여러개일때 if else문

 

<!DOCTYPE html>

<html lang="ko">

<head>

<meta charset="UTF-8">

<title> else if문 </title>

<script>

    var mon = prompt("현재는 몇 월입니까?", "0");

    if(mon>=9 && mon<=11){

        document.write("가을입니다.");

    }else if(mon>=6 && mon<=8){

        document.write("여름입니다.");

    }else if(mon>=3 && mon<=5){

        document.write("봄입니다.");

    }else if(mon==12 || mon<=2){

        document.write("겨울입니다.");

    }

    if(mon>12){

        document.write("1~12 사이만 입력가능");

    }

</script>

</head>

<body>

</body>

</html>

 

 

 

 

 

 

 

 

 


 

 

  • 중첩 if 문

 

<!DOCTYPE html>

<html lang="ko">

<head>

<meta charset="UTF-8">

<title> 중첩 if문 </title>

<script>

    var id = "easy1004";

    var pw = "112233";



    var usr_id=prompt("아이디: ", "");

    var usr_pw=prompt("비밀번호: ","");



    if(usr_id==id){

        if(usr_pw==pw){

            document.write("로그인 성공");

        }else{

            alert("비밀번호 불일치");

            location.reload(); //브라우저 새로고침

        }

    }else{

        alert("해당 아이디가 없음");

        location.reload(); //브라우저 새로고침

    }

</script>

</head>

<body>

</body>

</html>

 

=>>경고창이 뜬 후 다시 아이디 입력

 

 

=========================================================

 

 

=>>경고창이 뜬 후 다시 아이디 입력

 

==========================================================

 

 


  • switch문

 

<!DOCTYPE html>

<html lang="ko">

<head>

<meta charset="UTF-8">

<title> 선택문 </title>

<script>

    var site = prompt("네이버, 다음, 네이트, 구글 중 \

    즐겨 사용하는 포털 검색 사이트는?", "");

    var url;



    switch(site){

        case "구글": url="www.google.com"; break;

        case "다음": url="www.daum.net"; break;

        case "네이버": url="www.naver.com"; break;

        case "네이트": url="www.nate.com"; break;

        default : alert("해당 사이트 url 누락");

    }

    if(url){

        location.href="http://"+url;

    }

    

</script>

</head>

<body>

</body>

</html>

 

 

 

 


 

  • 반복문 while

 

<!DOCTYPE html>

<html lang="ko">

<head>

<meta charset="UTF-8">

<title> while문 </title>

<script>

        var i = 1;

        while(i<=10){

            document.write("안녕"+i,"<br>");

            i++;

        }

        document.write("==== The End ====");

</script>

</head>

<body>

</body>

</html>

 

 


 

<!DOCTYPE html>

<html lang="ko">

<head>

<meta charset="UTF-8">

<title> while문 </title>

<script>

        var i = 1;

        do{

            document.write("안녕"+i,"<br>");

            i++;

        }while(i<=10)

        document.write("==== The End ====");

</script>

</head>

<body>

</body>

</html>

 

 

<!DOCTYPE html>

<html lang="ko">

<head>

<meta charset="UTF-8">

<title> while문 </title>

<script>

        var i = 1;

        for(i=1;i<=10;i++){

            document.write("안녕"+i, "<br>");

        }

        document.write("==== The End ====");

</script>

</head>

<body>

</body>

</html>

 


 

  • 20~10까지 짝수면 파랗게, 홀수면 빨간 글씨로 출력

 

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Document</title>

    <style>

        .red{

            color: red;

        }

        .blue{

            color: blue;

        }

    </style>

</head>

<body>

    <script>

        var i=20;

        while(i>=10){

            if(i%2==0){

                document.write("<p class='blue'>"+i+"</p>");

            }else{

                document.write("<p class='red'>"+i+"</p>");

            }

            i--;

        }

    </script>

</body>

</html>

 

 


 

  • 5의 배수는 파란색, 7의 배수는 빨간색, 5와 7의 공배수는 초록색 글씨로 표시

 

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Document</title>

    <style>

        .blue{

            color: blue;

        }

        .red{

            color: red;

        }

        .green{

            color: green;

        }

    </style>

</head>

<body>

    <script>

        for(var i=1;i<=100;i++){

            if(i%5==0 && i%7!=0){

                document.write("<p class='blue'>"+i+"</p>");

            }else if(i%7==0 && i%5!=0){

                document.write("<p class='red'>"+i+"</p>");

            }else if(i%5==0 && i%7==0){

                document.write("<p class='green'>"+i+"</p>");

            }

        }

    </script>

</body>

</html>

 

 


 

  • break: 반복문을 강제로 종료

  • continue: 반복문의 처음으로 돌아감

 

<!DOCTYPE html>

<html lang="ko">

<head>

<meta charset="UTF-8">

<title> break문 </title>

<script>

    for(var i=1;i<100;i++){

        if(i==6){

            break;

        }

        document.write(i,"<br>");

    }

    document.write("=== The End ===");

</script>

</head>

<body>

</body>

</html>

 


 

  • 1에서 100까지 홀수만 출력 (break사용)

 

<!DOCTYPE html>

<html lang="ko">

<head>

<meta charset="UTF-8">

<title> break문 </title>

<script>

    for(var i=1;i<100;i++){

        if(i%2==0) continue;

        document.write(i,"<br>");

    }

    document.write("=== The End ===");

</script>

</head>

<body>

</body>

</html>

 

 


 

  • 중첩 for 문

 

<!DOCTYPE html>

<html lang="ko">

<head>

<meta charset="UTF-8">

<title> 중첩for문 </title>

<script>

    for(var i=1;i<=3;i++){

        for(var j=1;j<=2;j++){

            document.write(i+"행"+j+"열");

        }

        document.write("<br>");

    }

</script>

</head>

<body>

</body>

</html>

 


 

  • 구구단 출력

 

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Document</title>

</head>

<body>

    <script>

        var dan=prompt("단 입력", "");

        for(var i=1;i<=9;i++){

            document.write(dan+" X "+i+"="+i*dan+"<br>");

        }

    </script>

</body>

</html>

 

 

 


 

  • 이중 for문으로 5행 5열 테이블 출력

 

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Document</title>

</head>

<body>

    <script>

        var n=1;

        var t="<table border=1>";

        for(var i=1;i<=5;i++){

            t+="<tr>";

            for(var j=1;j<=5;j++){

                t+="<td>"+n+"</td>";

                n++;

            }

            t+="</tr>";

        }

        t+="</table>";

        document.write(t);

    </script>

</body>

</html>

 

 

'Learning > HTML&JavaScript' 카테고리의 다른 글

자바스크립트 함수 1  (0) 2020.07.31
자바스크립트 객체  (0) 2020.07.31
자바스크립트  (0) 2020.07.24
CSS3 선택자  (0) 2020.07.24
HTML 멀티미디어  (0) 2020.07.24

 

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <meta http-equiv="X-UA-Compatible" content="ie=edge">

    <title>맛보기 예제</title>

</head>

<body>

    <script>

        var age = prompt("당신의 나이는?", "0");

        if(age >= 20){

            document.write("당신은 성인입니다.");

        }else{

            document.write("당신은 미성년자입니다.");

        }

    </script>

</body>

</html>

 

 

 


 

 

<!DOCTYPE html>

<html lang="ko">

<head>

    <meta charset="UTF-8">

    <title>선언문</title>

    <script src="js/example.js"></script>

    <script>

        document.write("선언문");

    </script>

</head>

<body>

</body>

</html>

 

 

 

 


 

<!DOCTYPE html>

<html lang="ko">

<head>

    <meta charset="UTF-8">

    <title> 외부 자바스크립트 연동 </title>

    <script>

        var box;

        box=100;

        box=30;

        document.write(box, "<br>");

        var a="javascript";

        document.write(a, "<br>");

        var str="자바스크립트";

        var num=100;

        document.write(typeof num, "<br>");

        document.write(typeof str);

    </script>

</head>

<body>

</body>

</html>

 

 

 


 

<!DOCTYPE html>

<html lang="ko">

<head>

    <meta charset="UTF-8">

    <title> 산술 연산자 </title>

    <script>

        var num1 = 15;

        var num2 = 2;

        var result;

        result=num1+num2;

        document.write(result, "<br>");

        result=num1*num2;

        document.write(result, "<br>");

        result=num1/num2;

        document.write(result, "<br>");

        result=num1%num2;

        document.write(result, "<br>");

        var t1="학교종이";

        var t2="땡땡땡";

        result=t1+t2;

        document.write(result, "<br>");

        

        var num1=10;

        var num2=3;

        num1+=num2;

        document.write(num1);

    </script>

</head>

<body>

</body>

</html>

 

 


 

 

<!DOCTYPE html>

<html lang="ko">

<head>

<meta charset="UTF-8">

<title> 복합대입 연산자-테이블 만들기 </title>

<script>

    var str="<table border='1'>";

        str+="<tr>"

        str+="<td>1</td><td>2</td><td>3</td>";

        str+="</tr>"

        str+="</table>"

    document.write(str);

</script>

</head>

<body>

</body>

</html>

 

 

 


 

 

<!DOCTYPE html>

<html lang="ko">

<head>

    <meta charset="UTF-8">

    <title> 비교 연산자 </title>

    <script>

        var a = 10;

        var b = 20;

        var c = 10;

        var f = "20";

        var result;

        

        result=a>b;

        document.write(result,"<br>");

        result=a<=b;

        document.write(result,"<br>");

        result=a!=b;

        document.write(result,"<br>");

        result=b===f;

        document.write(result,"<br>");

    </script>

</head>

<body>

</body>

</html>

 

스크립트에서 '같다'표시는 === 이다.

 

 

 

 


<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title> 삼항 조건 연산자 </title>
<script>
	var a = 10;
	var b = 3;
	//var result;

	var result=a>b? "자바스크립트":"hello";
	document.write(result,"<br>");
</script>
</head>
<body>
</body>
</html>


 

 

<!DOCTYPE html>

<html lang="ko">

<head>

<meta charset="UTF-8">

<title> 적정 몸무게 구하기 </title>

<script>

    var name=prompt("이름:","");

    var weight=prompt("몸무게:","0");

    var height=prompt("키:","0");



    var normal_w=(height-100)*0.9;

    var result=weight>=normal_w-5 && weight<=normal_w+5;

    result=result? "적정체중":"적정체중이 아닙니다.";

    document.write(name+"님은 "+result);

</script>

</head>

<body>

</body>

</html>

 

 

 

 

 


<!DOCTYPE html>

<html lang="ko">

<head>

<meta charset="UTF-8">

<title> 종합실습1-1 </title>

<script>

    var price1 = 3000;

    var price2 = 6000;

    var price3 = 3000;



    var total=price1+price2+price3;

    

    total=total>10000? total-10000+"원 초과":"관리잘함";

    document.write(total);

</script>

</head>

<body>

</body>

</html>

 


 

'Learning > HTML&JavaScript' 카테고리의 다른 글

자바스크립트 객체  (0) 2020.07.31
자바스크립트 제어문  (0) 2020.07.31
CSS3 선택자  (0) 2020.07.24
HTML 멀티미디어  (0) 2020.07.24
HTML5 시멘틱 태그  (0) 2020.07.24

 

<!doctype html>

<html lang="ko">

<head>

<meta charset="utf-8">

<title>속성 선택자</title>

<style>

    ul{

        list-style-type: none;

    }

    li{

        width: 120px;

        display: inline-block;

        margin: 10px;

    }

    li a{

        padding: 5px 10px;

        font-size: 14px;

        color: blue;

        text-decoration: none;

    }

    a[href]{

        background-color: yellow;

    }

</style>

</head>



<body>

    <ul>

        <li><a>메인 메뉴 : </a></li>

        <li><a href="#">메뉴 1</a></li>

        <li><a href="#">메뉴 2</a></li>

        <li><a href="#">메뉴 3</a></li>

        <li><a href="#">메뉴 4</a></li>

    </ul>

  </body>

 </html>



 

 


 

<!doctype html>

<html lang="ko">

  <head>

        <meta charset="utf-8">

    <title> 가상 클래스 </title>

    <style>

            body {

                background-color:#fff; 

            }

            form fieldset{

                margin-bottom:25px; 

            }    

            form legend{

                font-size:15px;

                font-weight:600; 

            }

            input:disabled{

                background: #ccc;

                border: 1px #ddd solid;

            }

            input:checked+span{

                color: blue;

            }

            

        </style>

  </head>

  <body>

        <form>

            <fieldset>

                <legend>사용자 정보</legend>

                <label>이름 <input type="text" disabled></label>

            </fieldset>

            <fieldset>

                <legend>신청 과목</legend>

                <p>이 달에 신청할 과목을 선택하세요</p>

                <label><input type="radio" name="subject" value="speaking"><span>회화</span></label>

                <label><input type="radio" name="subject" value="grammar"><span>문법</span></label>

                <label><input type="radio" name="subject" value="writing"><span>작문</span></label> 

            </fieldset>     

        </form>

  </body>

</html>



 


 

<!DOCTYPE HTML>

<html lang="ko">

<head>

  <meta charset="utf-8">

  <title>CSS 선택자</title>  

  <style>

    .top-img:hover{

      border: 4px solid black;

    }

  </style>

</head>

<body>

  <p>이미지 위로 마우스 포인터를 올려보세요</p>

  <img src="images/tangerines.jpg" class="top-img">

</body>

</html>

 

 

 

'Learning > HTML&JavaScript' 카테고리의 다른 글

자바스크립트 제어문  (0) 2020.07.31
자바스크립트  (0) 2020.07.24
HTML 멀티미디어  (0) 2020.07.24
HTML5 시멘틱 태그  (0) 2020.07.24
CSS 레이아웃  (0) 2020.07.21

+ Recent posts