• This project
    • Loading...
  • Sign in

민재기 / web_service

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • web_service
  • js
  • ex10_4.js
  • 민재기's avatar
    all file · d6c11883
    d6c11883
    민재기 authored 2017-05-16 12:05:30 +0900
ex10_4.js 314 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
"use strict"

alert("test");
window.open ('','_self','width=200, height=100');

if (confirm ("확인을 누르시면 'history.back()'만 수행합니다.")){
  history.back();
}else{

var name = prompt("Enter Name");

alert (navigator.userAgent);


location.assign("http://www.naver.com/");
//location.reload();
}