μ μ΄μΏΌλ¦¬ μμ± κ΄λ ¨ λ©μλ
jQuery : μμ± κ΄λ ¨ λ©μλ> attr( ) λ©μλ μ νν μμμ attribute(μμ±)λ₯Ό μ ν, μμ±, λ³κ²½νλ λ©μλμ
λλ€. μ€ν λΆλ₯ νμ μ·¨λ $("a").attr("href"); μμ±, λ³κ²½ $("a").attr("href", "http://icoxpublish.com").attr("target", "_blank"); $("a").attr({"href": "http://icoxpublish.com", target:"_blank"}); μ½λ°± ν¨μ $("a").attr("href", function(index, h){ //indexλ κ° a μμμ index 0, 1, 2 //hλ κ° a μμ href μμ± return attribute(μμ±) // κ° a μμμ μμ±μ μμ± λ° λ³κ²½ν©λλ€...
2022. 9. 5.
ν¨μ μ΄ν΄νκΈ° 2
ν¨μμ μ ν : ν¨μμ 맀κ°λ³μλ₯Ό μ΄μ©ν νν function func(num, str1, str2) { document.write(num + str1 + str2 + "λμμ΅λλ€."); } func("1", "ν¨μ", "μ€ν"); func("2", "μλ°μ€ν¬λ¦½νΈ", "μ€ν"); func("3", "μ μ΄μΏΌλ¦¬", "μ€ν"); κ²°κ³Ό 보기 ν¨μ μ ν : ν¨μμ λ³μλ₯Ό μ΄μ©ν νν function func(num, str1, str2) { document.write(num + ". " + str1 + "κ° " + str2 + "λμμ΅λλ€. "); } const youNum1 = 1; const youNum2 = 2; const youNum3 = 3; const youStr1 = "ν¨μ"; const youStr..
2022. 8. 22.