<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script>
function linkchang(e) {
var linkeml = document.getElementsByName('move');
console.log(linkeml);
for(var i=0;i<linkeml.length;i++){
if(linkeml[i].checked){
document.getElementById('link').href = linkeml[i].value;
}
}
}
</script>
</head>
<body>
<input name="move" type="radio" value="https://www.naver.com/"> 네이버
<input name="move" type="radio" value="https://www.youtube.com/"> 유튭
<a id="link" href="http://" onclick="linkchang(event)">이동</a>
</body>
</html>