{"id":666,"date":"2023-02-03T17:59:19","date_gmt":"2023-02-03T08:59:19","guid":{"rendered":"https:\/\/blog.dozzing.kr\/?p=666"},"modified":"2025-10-24T11:46:02","modified_gmt":"2025-10-24T02:46:02","slug":"javascript-dom-%ec%a1%b0%ec%9e%91-%ec%97%b0%ec%8a%b5-3","status":"publish","type":"post","link":"https:\/\/blog.dozzing.kr\/?p=666","title":{"rendered":"[JavaScript] DOM \uc870\uc791 \uc5f0\uc2b5 3"},"content":{"rendered":"<h2>\ud83d\udcab \uc0c1\ud488 \uc815\ubcf4 \ucd9c\ub825\ud558\uae30<\/h2>\n<h5>\ucfe0\ud321 <a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/www.coupang.com\/vp\/products\/7665384552?vendorItemId=87513882348&amp;sourceType=HOME_JIKGU_PROMOTION&amp;searchId=feed-e1a9e07c710349b2a4ebef5183a90266-jikgu_promotion&amp;isAddedCart=\">\uc0c1\ud488\ud398\uc774\uc9c0<\/a>\uc5d0\uc11c \uc0c1\ud488\uc758 \ub300\ud45c\uc774\ubbf8\uc9c0 \uc8fc\uc18c, \uc0c1\ud488 \uc8fc\uc18c, \uc0c1\ud488 \uc774\ub984, \uc0c1\ud488 \uac00\uaca9, \uc0c1\ud488 \ubcc4\uc810 \ucd9c\ub825\ud558\uae30<\/h5>\n<h2>\ud83d\udcab \ucd9c\ub825\uacb0\uacfc<\/h2>\n<pre><code class=\"line-numbers\">\uc0c1\ud488 \uba54\uc778 \uc774\ubbf8\uc9c0 \uc8fc\uc18c : https:\/\/thumbnail7.coupangcdn.com\/thumbnails\/remote\/492x492ex\/image\/vendor_inventory\/2f36\/78bc576885e6986a802ed296cd6ce412ceee6c71e46456fe555345c4b872.JPG\n\uc0c1\ud488 \uc8fc\uc18c : https:\/\/www.coupang.com\/vp\/products\/7665384552?vendorItemId=87513882348&amp;sourceType=HOME_JIKGU_PROMOTION&amp;searchId=feed-e1a9e07c710349b2a4ebef5183a90266-jikgu_promotion&amp;isAddedCart=\n\uc0c1\ud488 \uc774\ub984 : \uc6b0\ud5c8 \ucfe0\ub85c\ubbf8 \uc2dd\uae30 4\uc885 \uc138\ud2b8\n\uc0c1\ud488 \uac00\uaca9 : 12,000\uc6d0\n\uc0c1\ud488 \ubcc4\uc810 : 5\n<\/code><\/pre>\n<p>\u00a0<\/p>\n<h2>\ud83d\udcab CODE<\/h2>\n<pre><code class=\"language-Javascript line-numbers\">\/\/ \uc0c1\ud488 \uc774\ubbf8\uc9c0 \uc8fc\uc18c\nvar img = document.querySelector('.prod-image__detail').getAttribute('src');\n\/\/ \uc0c1\ud488 \uc8fc\uc18c(\ud604\uc7ac \uc8fc\uc18c)\nvar url = window.location.href;\n\/\/ \uc0c1\ud488 \uc774\ub984\nvar name = document.querySelector('.prod-buy-header__title').innerText;\n\/\/ \uc0c1\ud488 \uac00\uaca9\nvar price = document.querySelector('.total-price &gt; strong').innerText;\n\n\/\/ \uc0c1\ud488 \ubcc4\uc810\nif(document.querySelector('.rating-star-num').style.width == '100%') var score = 5; \nelse if(document.querySelector('.rating-star-num').style.width == '90%') var score = 4.5;\nelse if(document.querySelector('.rating-star-num').style.width == '80%') var score = 4;\nelse if(document.querySelector('.rating-star-num').style.width == '70%') var score = 3.5;\nelse if(document.querySelector('.rating-star-num').style.width == '60%') var score = 3;\nelse if(document.querySelector('.rating-star-num').style.width == '50%') var score = 2.5;\nelse if(document.querySelector('.rating-star-num').style.width == '40%') var score = 2;\nelse if(document.querySelector('.rating-star-num').style.width == '30%') var score = 1.5;\nelse if(document.querySelector('.rating-star-num').style.width == '20%') var score = 1;\nelse if(document.querySelector('.rating-star-num').style.width == '10%') var score = 0.5;\nelse var score = 0;\n\nconsole.log('\uc0c1\ud488 \uba54\uc778 \uc774\ubbf8\uc9c0 \uc8fc\uc18c : https:' + img + '\\n\uc0c1\ud488 \uc8fc\uc18c : '  + url + '\\n\uc0c1\ud488 \uc774\ub984 : ' + name + '\\n\uc0c1\ud488 \uac00\uaca9 : ' + price + '\\n\uc0c1\ud488 \ubcc4\uc810 : ' + score);\n<\/code><\/pre>\n<h5>1. \ud604\uc7ac \ud398\uc774\uc9c0\uc5d0\uc11c <code>prod-image__detail<\/code>\ud074\ub798\uc2a4\uc758 <code>src<\/code>\uc18d\uc131\uc744 querySelector\uc744 \uc0ac\uc6a9\ud558\uc5ec img \ubcc0\uc218\uc5d0 \uc800\uc7a5<\/h5>\n<h5>2. \ud604\uc7ac \ud398\uc774\uc9c0\uc758 url\uc744 window.location.href\ub85c \uac00\uc838\uc624\uae30<\/h5>\n<h5>3. \ud604\uc7ac \ud398\uc774\uc9c0\uc5d0\uc11c <code>prod-buy-header__title<\/code>\ud074\ub798\uc2a4\uc758 Text\ub97c name \ubcc0\uc218\uc5d0 \uc800\uc7a5<\/h5>\n<h5>4. \ud604\uc7ac \ud398\uc774\uc9c0\uc5d0\uc11c <code>total-price<\/code>\ud074\ub798\uc2a4\uc758 <code>&lt;strong&gt;<\/code> \ud0dc\uadf8 \ub0b4\uc6a9\uc744 price \ubcc0\uc218\uc5d0 \uc800\uc7a5<\/h5>\n<h5>5. \ud604\uc7ac \ud398\uc774\uc9c0\uc5d0\uc11c <code>rating-star-num<\/code>\ud074\ub798\uc2a4\uc758 style\uc758 width \ud37c\uc13c\ud2b8\uc5d0 \ub530\ub77c score \ubcc0\uc218\uc5d0 \ubcc4\uc810 \uc800\uc7a5<\/h5>\n<p>\u00a0<\/p>\n<h2>\ud83d\udcab \uc0c8\ub86d\uac8c \uc54c\uac8c \ub41c \uac83\ub4e4<\/h2>\n<h4>1. style<\/h4>\n<p>style \uc18d\uc131\uc5d0 \uc811\uadfc\ud560\uc218 \uc788\uc74c.<\/p>\n<h4>2. window.location.href<\/h4>\n<p>\uc804\uccb4 URL \ubb38\uc790\uc5f4\uc744 \uac00\uc838\uc634.<br \/>\n- <a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/hianna.tistory.com\/464\">window.location<\/a><\/p>\n<pre><code class=\"line-numbers\">window.location.href\n\uc804\uccb4 URL \ubb38\uc790\uc5f4\uc744 \uac00\uc838\uc635\ub2c8\ub2e4.\n\u00a0\nwindow.location.protocol\n\ub9c8\uc9c0\ub9c9 ':'\ub97c \ud3ec\ud568\ud55c \ud504\ub85c\ud1a0\ucf5c \uc815\ubcf4\ub97c \uac00\uc838\uc635\ub2c8\ub2e4.\n\u00a0\nwindow.location.host\nURL\uc758 \ud638\uc2a4\ud2b8 \uc815\ubcf4\ub97c \uac00\uc838\uc635\ub2c8\ub2e4.\u00a0\nURL\uc5d0 \ud3ec\ud2b8\ubc88\ud638\uac00 \uc788\uc73c\uba74 ':'\uacfc \ud3ec\ud2b8\ubc88\ud638\ub97c \ud3ec\ud568\ud569\ub2c8\ub2e4.\n\u00a0\nwindow.location.hostname\nURL\uc758 \ud638\uc2a4\ud2b8\uba85\uc744 \uac00\uc838\uc635\ub2c8\ub2e4.\n':'\uacfc \ud3ec\ud2b8\ubc88\ud638\ub97c \ud3ec\ud568\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.\n\u00a0\nwindow.location.port\nURL\uc758 \ud3ec\ud2b8 \ubc88\ud638\uc785\ub2c8\ub2e4.\n\u00a0\nwindow.location.pathname\nhostname \ub4a4\uc758 '\/'\ubb38\uc790 \ub4a4\uc758 \uacbd\ub85c\ub97c \uac00\uc838\uc635\ub2c8\ub2e4.\n\u00a0\nwindow.location.search\n'?' \ub4a4\uc758 \ucffc\ub9ac\uc2a4\ud2b8\ub9c1\uc744 \uac00\uc838\uc635\ub2c8\ub2e4.\n<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\ud83d\udcab \uc0c1\ud488 \uc815\ubcf4 \ucd9c\ub825\ud558\uae30 \ucfe0\ud321 \uc0c1\ud488\ud398\uc774\uc9c0\uc5d0\uc11c \uc0c1\ud488\uc758 \ub300\ud45c\uc774\ubbf8\uc9c0 \uc8fc\uc18c, \uc0c1\ud488 \uc8fc\uc18c, \uc0c1\ud488 \uc774\ub984, \uc0c1\ud488 \uac00\uaca9, \uc0c1\ud488 \ubcc4\uc810 \ucd9c\ub825\ud558\uae30 \ud83d\udcab \ucd9c\ub825\uacb0\uacfc \uc0c1\ud488 \uba54\uc778 \uc774\ubbf8\uc9c0 \uc8fc\uc18c : https:\/\/thumbnail7.coupangcdn.com\/thumbnails\/remote\/492x492ex\/image\/vendor_inventory\/2f36\/78bc576885e6986a802ed296cd6ce412ceee6c71e46456fe555345c4b872.JPG \uc0c1\ud488 \uc8fc\uc18c : https:\/\/www.coupang.com\/vp\/products\/7665384552?vendorItemId=87513882348&amp;sourceType=HOME_JIKGU_PROMOTION&amp;searchId=feed-e1a9e07c710349b2a4ebef5183a90266-jikgu_promotion&amp;isAddedCart= \uc0c1\ud488 \uc774\ub984 : \uc6b0\ud5c8 \ucfe0\ub85c\ubbf8 \uc2dd\uae30 4\uc885 \uc138\ud2b8 \uc0c1\ud488 \uac00\uaca9 : 12,000\uc6d0 \uc0c1\ud488 \ubcc4\uc810 : 5 \u00a0 \ud83d\udcab CODE \/\/ \uc0c1\ud488 \uc774\ubbf8\uc9c0 \uc8fc\uc18c var img [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[50,30,33],"tags":[32,34],"class_list":["post-666","post","type-post","status-publish","format-standard","hentry","category-frontend","category-javascript","category-web","tag-javascript","tag-web"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[JavaScript] DOM \uc870\uc791 \uc5f0\uc2b5 3 - Dozzing World<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/blog.dozzing.kr\/?p=666\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[JavaScript] DOM \uc870\uc791 \uc5f0\uc2b5 3 - Dozzing World\" \/>\n<meta property=\"og:description\" content=\"\ud83d\udcab \uc0c1\ud488 \uc815\ubcf4 \ucd9c\ub825\ud558\uae30 \ucfe0\ud321 \uc0c1\ud488\ud398\uc774\uc9c0\uc5d0\uc11c \uc0c1\ud488\uc758 \ub300\ud45c\uc774\ubbf8\uc9c0 \uc8fc\uc18c, \uc0c1\ud488 \uc8fc\uc18c, \uc0c1\ud488 \uc774\ub984, \uc0c1\ud488 \uac00\uaca9, \uc0c1\ud488 \ubcc4\uc810 \ucd9c\ub825\ud558\uae30 \ud83d\udcab \ucd9c\ub825\uacb0\uacfc \uc0c1\ud488 \uba54\uc778 \uc774\ubbf8\uc9c0 \uc8fc\uc18c : https:\/\/thumbnail7.coupangcdn.com\/thumbnails\/remote\/492x492ex\/image\/vendor_inventory\/2f36\/78bc576885e6986a802ed296cd6ce412ceee6c71e46456fe555345c4b872.JPG \uc0c1\ud488 \uc8fc\uc18c : https:\/\/www.coupang.com\/vp\/products\/7665384552?vendorItemId=87513882348&amp;sourceType=HOME_JIKGU_PROMOTION&amp;searchId=feed-e1a9e07c710349b2a4ebef5183a90266-jikgu_promotion&amp;isAddedCart= \uc0c1\ud488 \uc774\ub984 : \uc6b0\ud5c8 \ucfe0\ub85c\ubbf8 \uc2dd\uae30 4\uc885 \uc138\ud2b8 \uc0c1\ud488 \uac00\uaca9 : 12,000\uc6d0 \uc0c1\ud488 \ubcc4\uc810 : 5 \u00a0 \ud83d\udcab CODE \/\/ \uc0c1\ud488 \uc774\ubbf8\uc9c0 \uc8fc\uc18c var img [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blog.dozzing.kr\/?p=666\" \/>\n<meta property=\"og:site_name\" content=\"Dozzing World\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-03T08:59:19+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-24T02:46:02+00:00\" \/>\n<meta name=\"author\" content=\"Dozzing\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"Dozzing\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"2\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/blog.dozzing.kr\/?p=666\",\"url\":\"https:\/\/blog.dozzing.kr\/?p=666\",\"name\":\"[JavaScript] DOM \uc870\uc791 \uc5f0\uc2b5 3 - Dozzing World\",\"isPartOf\":{\"@id\":\"https:\/\/blog.dozzing.kr\/#website\"},\"datePublished\":\"2023-02-03T08:59:19+00:00\",\"dateModified\":\"2025-10-24T02:46:02+00:00\",\"author\":{\"@id\":\"https:\/\/blog.dozzing.kr\/#\/schema\/person\/52258baef65b530d3e867e4c1f79c36f\"},\"breadcrumb\":{\"@id\":\"https:\/\/blog.dozzing.kr\/?p=666#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/blog.dozzing.kr\/?p=666\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/blog.dozzing.kr\/?p=666#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/blog.dozzing.kr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[JavaScript] DOM \uc870\uc791 \uc5f0\uc2b5 3\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/blog.dozzing.kr\/#website\",\"url\":\"https:\/\/blog.dozzing.kr\/\",\"name\":\"Dozzing World\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/blog.dozzing.kr\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/blog.dozzing.kr\/#\/schema\/person\/52258baef65b530d3e867e4c1f79c36f\",\"name\":\"Dozzing\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/blog.dozzing.kr\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/0bbe3fe675c3641965411ffb61a1368b3bf05e794deaa3c7bd0ef7b4690a614a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/0bbe3fe675c3641965411ffb61a1368b3bf05e794deaa3c7bd0ef7b4690a614a?s=96&d=mm&r=g\",\"caption\":\"Dozzing\"},\"sameAs\":[\"https:\/\/blog.dozzing.kr\/\"],\"url\":\"https:\/\/blog.dozzing.kr\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[JavaScript] DOM \uc870\uc791 \uc5f0\uc2b5 3 - Dozzing World","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/blog.dozzing.kr\/?p=666","og_locale":"ko_KR","og_type":"article","og_title":"[JavaScript] DOM \uc870\uc791 \uc5f0\uc2b5 3 - Dozzing World","og_description":"\ud83d\udcab \uc0c1\ud488 \uc815\ubcf4 \ucd9c\ub825\ud558\uae30 \ucfe0\ud321 \uc0c1\ud488\ud398\uc774\uc9c0\uc5d0\uc11c \uc0c1\ud488\uc758 \ub300\ud45c\uc774\ubbf8\uc9c0 \uc8fc\uc18c, \uc0c1\ud488 \uc8fc\uc18c, \uc0c1\ud488 \uc774\ub984, \uc0c1\ud488 \uac00\uaca9, \uc0c1\ud488 \ubcc4\uc810 \ucd9c\ub825\ud558\uae30 \ud83d\udcab \ucd9c\ub825\uacb0\uacfc \uc0c1\ud488 \uba54\uc778 \uc774\ubbf8\uc9c0 \uc8fc\uc18c : https:\/\/thumbnail7.coupangcdn.com\/thumbnails\/remote\/492x492ex\/image\/vendor_inventory\/2f36\/78bc576885e6986a802ed296cd6ce412ceee6c71e46456fe555345c4b872.JPG \uc0c1\ud488 \uc8fc\uc18c : https:\/\/www.coupang.com\/vp\/products\/7665384552?vendorItemId=87513882348&amp;sourceType=HOME_JIKGU_PROMOTION&amp;searchId=feed-e1a9e07c710349b2a4ebef5183a90266-jikgu_promotion&amp;isAddedCart= \uc0c1\ud488 \uc774\ub984 : \uc6b0\ud5c8 \ucfe0\ub85c\ubbf8 \uc2dd\uae30 4\uc885 \uc138\ud2b8 \uc0c1\ud488 \uac00\uaca9 : 12,000\uc6d0 \uc0c1\ud488 \ubcc4\uc810 : 5 \u00a0 \ud83d\udcab CODE \/\/ \uc0c1\ud488 \uc774\ubbf8\uc9c0 \uc8fc\uc18c var img [&hellip;]","og_url":"https:\/\/blog.dozzing.kr\/?p=666","og_site_name":"Dozzing World","article_published_time":"2023-02-03T08:59:19+00:00","article_modified_time":"2025-10-24T02:46:02+00:00","author":"Dozzing","twitter_card":"summary_large_image","twitter_misc":{"\uae00\uc4f4\uc774":"Dozzing","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"2\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/blog.dozzing.kr\/?p=666","url":"https:\/\/blog.dozzing.kr\/?p=666","name":"[JavaScript] DOM \uc870\uc791 \uc5f0\uc2b5 3 - Dozzing World","isPartOf":{"@id":"https:\/\/blog.dozzing.kr\/#website"},"datePublished":"2023-02-03T08:59:19+00:00","dateModified":"2025-10-24T02:46:02+00:00","author":{"@id":"https:\/\/blog.dozzing.kr\/#\/schema\/person\/52258baef65b530d3e867e4c1f79c36f"},"breadcrumb":{"@id":"https:\/\/blog.dozzing.kr\/?p=666#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blog.dozzing.kr\/?p=666"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/blog.dozzing.kr\/?p=666#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/blog.dozzing.kr\/"},{"@type":"ListItem","position":2,"name":"[JavaScript] DOM \uc870\uc791 \uc5f0\uc2b5 3"}]},{"@type":"WebSite","@id":"https:\/\/blog.dozzing.kr\/#website","url":"https:\/\/blog.dozzing.kr\/","name":"Dozzing World","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blog.dozzing.kr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Person","@id":"https:\/\/blog.dozzing.kr\/#\/schema\/person\/52258baef65b530d3e867e4c1f79c36f","name":"Dozzing","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/blog.dozzing.kr\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/0bbe3fe675c3641965411ffb61a1368b3bf05e794deaa3c7bd0ef7b4690a614a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0bbe3fe675c3641965411ffb61a1368b3bf05e794deaa3c7bd0ef7b4690a614a?s=96&d=mm&r=g","caption":"Dozzing"},"sameAs":["https:\/\/blog.dozzing.kr\/"],"url":"https:\/\/blog.dozzing.kr\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/blog.dozzing.kr\/index.php?rest_route=\/wp\/v2\/posts\/666","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.dozzing.kr\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.dozzing.kr\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.dozzing.kr\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.dozzing.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=666"}],"version-history":[{"count":5,"href":"https:\/\/blog.dozzing.kr\/index.php?rest_route=\/wp\/v2\/posts\/666\/revisions"}],"predecessor-version":[{"id":671,"href":"https:\/\/blog.dozzing.kr\/index.php?rest_route=\/wp\/v2\/posts\/666\/revisions\/671"}],"wp:attachment":[{"href":"https:\/\/blog.dozzing.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=666"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.dozzing.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=666"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.dozzing.kr\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=666"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}