jQuery
-
280920 #003 jQuery : Style / AttributejQuery 2020. 9. 28. 09:41
Attribute Property 차이 비교 body 링크#hello var attr_img_src = $("#sample_img").attr("src"); var prop_img_src = $("#sample_img").prop("src"); console.log(attr_img_src); console.log(prop_img_src); var attr_img_width = $("#sample_img").attr("width"); var prop_img_width = $("#sample_img").prop("width"); console.log(attr_img_width); console.log(prop_img_width); var attr_href = $("#a").attr("href"); var p..
-
250920 #002 jQuery - nodejQuery 2020. 9. 25. 10:28
Node, Element? Node - Element - jQuery의 모든 코드는 jQuery.ready() 메소드로 시작. jQuery.ready() : 페이지 내의 모든 코드를 읽어들인 후에 실행해라! (= window.onload) //jQuery(document).ready(function(){//방법 1 //$(document).ready(function(){//방법 2 //jQuery(function(){//방법 3 $(function(){//방법 4 $("#frontEnd").css("border", "3px solid lightblue"); $("#backEnd").css("border", "3px solid pink"); }) // php에서도 $를 사용하기에 var j = jQuery..