美文网首页
js调用方法 备忘

js调用方法 备忘

作者: 心旷则神怡 | 来源:发表于2022-03-25 16:33 被阅读0次

几年没写js,调用都忘记了,记一下,备忘

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>js调用html代码</title>
</head>
<body>
    <input type='button' value='click' id='btnID'/>
    <script>
        document.getElementById('btnID').onclick = function() {
            alert('success!');
        }
    </script>
</body>
</html>

相关文章

网友评论

      本文标题:js调用方法 备忘

      本文链接:https://www.haomeiwen.com/subject/slrdjrtx.html