jquery初始

javaScript

jquery库,里面存在大量的javascript函数

类包可直接引入地址百度搜索CDN jquery

初始jquery

   <a href="" id="test-jruey">点我</a>
        <script>
            $('#test-jruey').click(function (){
               alert('hello,jquery');
            });

        </script>

猜你喜欢

转载自blog.csdn.net/vxandox/article/details/107920469