JavaScript事件属性event.target

复制代码
<!DOCTYPE html>
<html>

    <head>
        <meta charset="UTF-8">
        <title></title>
        <style type="text/css">
            #main {
                width: 200px;
                height: 100px;
                background: red;
            }
        </style>
        <script type="text/javascript">
            window.onload = function() {
                document.getElementById("main").onclick = function(e) {
                    console.log(e.target);
                    console.log(e.target.id);
                    console.log(e.target.tagName);
                    console.log(e.target.nodeName);
                    console.log(e.target.classList);
                    console.log(e.target.className);
                    console.log(e.target.innerHTML);
                    console.log(e.target.innerText);
                }
            }
        </script>
    </head>

    <body>
        <div id="main" class="sb js node"><span>我爱JavaScript</span></div>
    </body>

</html>




转载:https://www.cnblogs.com/libin-1/p/5936997.html
复制代码
<!DOCTYPE html>
<html>

    <head>
        <meta charset="UTF-8">
        <title></title>
        <style type="text/css">
            #main {
                width: 200px;
                height: 100px;
                background: red;
            }
        </style>
        <script type="text/javascript">
            window.onload = function() {
                document.getElementById("main").onclick = function(e) {
                    console.log(e.target);
                    console.log(e.target.id);
                    console.log(e.target.tagName);
                    console.log(e.target.nodeName);
                    console.log(e.target.classList);
                    console.log(e.target.className);
                    console.log(e.target.innerHTML);
                    console.log(e.target.innerText);
                }
            }
        </script>
    </head>

    <body>
        <div id="main" class="sb js node"><span>我爱JavaScript</span></div>
    </body>

</html>




转载:https://www.cnblogs.com/libin-1/p/5936997.html

猜你喜欢

转载自www.cnblogs.com/wzp-monkey/p/10458630.html