index.html 993 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>

<button onclick="myFunction()">Try it</button>


<button onclick="goLocation('naver')">NAVER</button>
<button onclick="goLocation('daum')">DAUM</button>

<script>
    document.write("<div id='name'><a href='123'>link</a></div>");
    var x = document.getElementById("name");
    //    alert(x.innerHTML);
    x.innerHTML = "<a href='http://naver.com'>link</a>";


    function myFunction() {
        var myWindow = window.open("", "_self", "");
        myWindow.document.write("<img width='500' height='300' src='test.png'/>");
    }


    function goLocation(where) {
        if (where === "naver") {
            location.assign("http://naver.com");
        } else if (where === "daum") {
            location.assign("http://daum.net");
        }
    }

//    var name = prompt("Enter Your Name", "Name");
//    document.write("Your name is " + name + " .");
</script>
</body>
</html>