IT/development

[jQuery] jQuery CDN ํ•ญ์ƒ ์ตœ์‹ ์œผ๋กœ ๋ถˆ๋Ÿฌ์˜ค๊ธฐ...

์•Œ ์ˆ˜ ์—†๋Š” ์‚ฌ์šฉ์ž 2022. 11. 24.

๋ชฉ์ฐจ

    image source:https://unsplash.com/s/photos/jquery

     

    ๋‚ด๊ฐ€ ๋‚˜์ค‘์— ์ฐพ์•„๋ณด๊ธฐ ์œ„ํ•ด ๊ธฐ๋กํ•จ

    <!DOCTYPE html>
    <html lang="en">
    <head>
    	<meta charset="UTF-8">
    	<meta name="viewport" content="width=device-width, initial-scale=1.0">
    	<title>Document</title>
    <!-- jQuery cdn ์ตœ์‹  ๋ถˆ๋Ÿฌ์˜ค๊ธฐ start -->    
    <script  src="http://code.jquery.com/jquery-latest.min.js"></script>
    <!-- jQuery cdn ์ตœ์‹  ๋ถˆ๋Ÿฌ์˜ค๊ธฐ end -->    
    </head>
    <body>
    <script>
    $(document).ready(function() {
    	test();
    });
    
    function test() {
    	console.log('test');
    }
    </script>
    </body>
    </html>

    ์ฐธ์กฐ : ๊ธฐ๋กํ•˜๋Š” ๋™๊ตฌ, "2020.02.03", https://donggu1105.tistory.com/22

    ๋Œ“๊ธ€