사용자:BANIP/vector.js: 두 판 사이의 차이

리버티게임, 모두가 만들어가는 자유로운 게임
백괴게임>BANIP
(jstest)
 
백괴게임>BANIP
잔글편집 요약 없음
11번째 줄: 11번째 줄:
   })();
   })();
   
   
   // data-get의 attribute를 가지는 spantag 취득
   // data-get의 속성을 가지는 요소의 텍스트노드를 치환
   (function grantGetData(){
   (function grantGetData(){
     $('*[data-get]').each(function(){
     $('*[data-get]').each(function(){
       $(this).text(function(){
       $(this).text(function(){
         return $(this).data("get");
         return getMethod[$(this).data("get")];
       })
       })
     });
     });
   })();
   })();

2017년 5월 11일 (목) 13:33 판

    // HTTTP 요청방식 get을 가져오는 함수
  var getMethod = {};
  (function setGetMethod(){
    var gets = location.search.split(/[?&]/).splice(1);
    console.log(gets );
    for(var i in gets){
      var key = decodeURI(gets[i].split("=")[0]);
      var value = decodeURI(gets[i].split("=")[1]);
      getMethod[key] = value;
    }
  })();
 
  // data-get의 속성을 가지는 요소의 텍스트노드를 치환
  (function grantGetData(){
    $('*[data-get]').each(function(){
      $(this).text(function(){
         return getMethod[$(this).data("get")];
      })
    });
  })();