차근차근
//test 아래 자식노드의 select값을 초기화 $("#test").find("select").each(function(){ $(this).find("option:eq(0)")attr("selected",true); }); //test 아래 자식노드의 input값을 초기화 $("#test").find("input[name='testNameList']").each(function(){ if("a,b,c".indexOf($(this).val()) != -1){ $(this).remove(); } }); //같은 input배열에 중복값을 출력 var inputs = $("input[name='testNameList']"); var stored = []; $.each(inputs,function(k,v){ ..
1. kakao API키 발급 사이트 접속 developers.kakao.com/console/app 카카오계정 로그인 여기를 눌러 링크를 확인하세요. accounts.kakao.com 2. kakao API Daum 이미지 가져오기 html 파일 Document kakaoImgApiInsert(); function kakaoImgApiInsert(){ //https://developers.kakao.com/tool/rest-api/open/get/v2-search-image $.ajax({ type: "GET", url: "https://dapi.kakao.com/v2/search/image", headers: { 'Authorization':'KakaoAK 발급받은 REST API키 삽입' // 'K..
1. 사용자 인증 API키 값 받기 구글 APIs 사이트 접속 console.developers.google.com/apis Google Cloud Platform 하나의 계정으로 모든 Google 서비스를 Google Cloud Platform을 사용하려면 로그인하세요. accounts.google.com 2. 사용자 인증 정보 만들기 3.youtuYouTube API 사용 .html 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949..