JS_test.html 1.26 KB
<!DOCTYPE html>
<html lang="ko">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>일정</title>
    <link rel="stylesheet" type="text/css"href="calander.css">
    <script src = "kia.js"></script>
    <script src = "dusan.js"></script>
    <script src = "algorithm.js"></script>
    <script src = "shuffle_list.js"></script>
</head>
<body>
    <div class = "container1">
        <input type="button" onclick = algorithm() value = "start">
    </div>
    
    
    <div class="container3">
        <ul class = "image-container">

            <div>
                <img src="player_picture/KIA/KIA_hitter_jpgs/김호령.jpg">
                <input type="button" value = "김호령" id = "김호령" name = "kia" onclick = shuffle(this)>
                <input type="button" value = "삭제" name = "김호령" onclick = remove(this)>
            </div>
            <div>
                <img src="player_picture/KIA/KIA_hitter_jpgs/최형우.jpg">
                <input type="button" value = "최형우" id = "최형우" name = "kia" onclick = shuffle(this)>
                <input type="button" value = "삭제" name = "최형우" onclick = remove(this)>
            </div>
        </ul>
    </div>
</body>
</html>