那些年被html,js,css坑過的事

1,HTML,CSS不區分大小寫,JS區分大小寫,這個要牢記:如下面代碼

<html>
    <head>
        <script type="text/javascript" >
            function hello(){
                alert("hello");
            }
            function Hello(){
                alert("Hello");
            }
        </script>
    </head>
    <body>
        <button οnclick="hello()"> 點擊</button>
    </body>
</html>

這個彈出的是“hello”,而不是“Hello”,在你使用Ctrl+F搜索時要注意,這個真的很坑。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章