1. 程式人生 > >第一個javascript腳本

第一個javascript腳本

div text value ntb element fun clas tle utf-8

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
    <input type="text" id="#21">
    <input type="button" onclick="def();"value="登錄" />
    <script>
        function def() {
            var i = document.getElementById(‘#21‘);
            alert(i.value);
        }
    </script>

</body>
</html>

第一個javascript腳本