javascript로 encode된 URL을 간단하게 decodeURIComponent 사용해서 변환(전환)하는 방법
제일 쉬운 방법은 그냥 개발자도구 켜서 콘솔에 decodeURIComponent(url) 찍어주는 게 가장 쉬운데, 그냥 즐겨찾기나 원클릭으로 잡아놓고 쓰기도 좋다. 예시 변환(전환)하기See the Pen DecodeURICompnent by 서대석(Key) (@seodaeya) on CodePen.참고 decodeURIComponent() - JavaScript | MDNThe decodeURIComponent() function decodes a Uniform Resource Identifier (URI) component previously created by encodeURIComponent() or by a similar routine.developer.mozilla.org
개발자의 삶/Web(html, script, css) 기초
2023. 2. 6. 12:03
[script] host url
들어가기 전...script 로 host url 을 가져와서 사용해야 할 때가 있다.처음에는 location.host 를 사용하면서 앞에 'http://' 를 추가해주는 식으로 사용했었는데, ie11 부터 지원하는 속성이 생겼다. 사용 방법ex) var url = location.origin + query_string; 개발자도구로 실행해보면 필자는 맥으로 캡처를 했기 때문에 safari 로 테스트 했지만, IE11 에서도 동일한 값이 나오는 것을 확인 할 수 있을 것이다. 지원 브라우저 #참고 : http://www.w3schools.com/jsref/prop_loc_origin.asp
개발자의 삶/Web(html, script, css) 기초
2016. 9. 2. 17:15