웹/JavaScript
-
[JS] jQuery 기능정리웹/JavaScript 2022. 1. 16. 23:52
Selecte Syntax Description Example $("*") Selects all elements $(this) Selects the current HTML element $("p.intro") Selects all elements with class="intro" $("p:first") Selects the first element $("ul li:first") Selects the first element of the first $("ul li:first-child") Selects the first element of every $("[href]") Selects all elements with an href attribute $("a[target='_blank']") Selects ..
-
[JS] JavaScript 기능 정리웹/JavaScript 2022. 1. 9. 19:36
https://www.w3schools.com/js/js_examples.asp JavaScript Examples W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more. www.w3schools.com https://www.w3schools.com/js/exercise_js.asp?filename=exercise_js_variables1 W3Schools JS Exercise I completed all th..