'Programming/jquery'에 해당되는 글 21건

  1. 2023.07.27 jquery ajax auth
  2. 2022.09.16 jquery ajax delete가 없다?
  3. 2022.09.05 jquery-cookie 라이브러리
  4. 2019.06.04 jquery 우클릭 가로채기
  5. 2019.01.07 jquery ajax json flask
  6. 2019.01.07 jquery this 버튼 checked
  7. 2019.01.04 ajax / promise / jquery
  8. 2019.01.04 ajax async와 jquery
  9. 2018.12.14 jquery ajaxsetup()
  10. 2018.12.09 jquery draggable
Programming/jquery2023. 7. 27. 19:04

'Programming > jquery' 카테고리의 다른 글

jquery ajax delete가 없다?  (0) 2022.09.16
jquery-cookie 라이브러리  (0) 2022.09.05
jquery 우클릭 가로채기  (0) 2019.06.04
jquery ajax json flask  (0) 2019.01.07
jquery this 버튼 checked  (0) 2019.01.07
Posted by 구차니
Programming/jquery2022. 9. 16. 14:40

ajax에서 DELETE로 하면 된다고 해서 해보는데 크롬에서 보면 자꾸 POST로 보내는 것 같기도?

아무튼.. 다시 해보니 되긴한데 머가 잘못되었던 걸까...

 

jquery 문서에는 1.9.0에 추가된 기능으로 POST GET PUT 과 같은 방법을 입력한다고 되어있는데

왜 DELETE가 언급이 안되어 있는걸까?

 

method (default: 'GET')
Type: String
The HTTP method to use for the request (e.g. "POST", "GET", "PUT"). (version added: 1.9.0)

type (default: 'GET')
Type: String
An alias for method. You should use type if you're using versions of jQuery prior to 1.9.0.

 [링크 : https://api.jquery.com/jquery.ajax/]

'Programming > jquery' 카테고리의 다른 글

jquery ajax auth  (0) 2023.07.27
jquery-cookie 라이브러리  (0) 2022.09.05
jquery 우클릭 가로채기  (0) 2019.06.04
jquery ajax json flask  (0) 2019.01.07
jquery this 버튼 checked  (0) 2019.01.07
Posted by 구차니
Programming/jquery2022. 9. 5. 11:57

서버에서 request cookie로 보내면 document.cookie로 접근이 가능한데

그걸 간단하게 사용하기 위한 라이브러리

[링크 : https://hailey0.tistory.com/38]

 

 

function getCookie(cname) {
  let name = cname + "=";
  let decodedCookie = decodeURIComponent(document.cookie);
  let ca = decodedCookie.split(';');
  for(let i = 0; i <ca.length; i++) {
    let c = ca[i];
    while (c.charAt(0) == ' ') {
      c = c.substring(1);
    }
    if (c.indexOf(name) == 0) {
      return c.substring(name.length, c.length);
    }
  }
  return "";
}

[링크 : https://www.w3schools.com/js/js_cookies.asp]

 

[링크 : https://nowonbun.tistory.com/634]

 

그나저나  document.cookie가 왜이렇게 생소하지?

'Programming > jquery' 카테고리의 다른 글

jquery ajax auth  (0) 2023.07.27
jquery ajax delete가 없다?  (0) 2022.09.16
jquery 우클릭 가로채기  (0) 2019.06.04
jquery ajax json flask  (0) 2019.01.07
jquery this 버튼 checked  (0) 2019.01.07
Posted by 구차니
Programming/jquery2019. 6. 4. 14:00

 

$(document).bind("contextmenu", function(event) { 
    event.preventDefault();
    $("<div class='custom-menu'>Custom menu</div>")
        .appendTo("body")
        .css({top: event.pageY + "px", left: event.pageX + "px"});
}).bind("click", function(event) {
    $("div.custom-menu").hide();
});

[링크 : http://jsfiddle.net/andrewwhitaker/fELma/]

  [링크 : https://programmingsummaries.tistory.com/149]

'Programming > jquery' 카테고리의 다른 글

jquery ajax delete가 없다?  (0) 2022.09.16
jquery-cookie 라이브러리  (0) 2022.09.05
jquery ajax json flask  (0) 2019.01.07
jquery this 버튼 checked  (0) 2019.01.07
ajax / promise / jquery  (0) 2019.01.04
Posted by 구차니
Programming/jquery2019. 1. 7. 14:35

연동하는 업체가 flask로 하는거 같은데(python 이니)

json 타입으로 값을 주려는데 안되서 이것저것 해보니

결국에 jquery로 아래와 같이 JSON.stringify() 해주어야 정상적으로 에러없이 인식을 한다.


data: JSON.stringify(data),

[링크 : https://stackoverflow.com/questions/17426199/jquery-ajax-and-json-format]

'Programming > jquery' 카테고리의 다른 글

jquery-cookie 라이브러리  (0) 2022.09.05
jquery 우클릭 가로채기  (0) 2019.06.04
jquery this 버튼 checked  (0) 2019.01.07
ajax / promise / jquery  (0) 2019.01.04
ajax async와 jquery  (0) 2019.01.04
Posted by 구차니
Programming/jquery2019. 1. 7. 10:47

쓸만해 보이는거 발견


$('#myCheckBox').click (function ()

{

var thisCheck = $(this);

if (thischeck.is (':checked'))

{

// Do stuff

}

}); 

[링크 : https://forum.jquery.com/topic/jquery-checkbox-checked-event]

'Programming > jquery' 카테고리의 다른 글

jquery 우클릭 가로채기  (0) 2019.06.04
jquery ajax json flask  (0) 2019.01.07
ajax / promise / jquery  (0) 2019.01.04
ajax async와 jquery  (0) 2019.01.04
jquery ajaxsetup()  (0) 2018.12.14
Posted by 구차니
Programming/jquery2019. 1. 4. 15:13

의외로 간단하네.. 한번 써봐야겠다..

어떤 건 new Promise 해서 ㅎ야 한다는데 그렇게 복잡하게 해야하나 싶긴 하지만..


// Example 2

var promise1 = $.ajax("/myServerScript1");

var promise2 = $.ajax("/myServerScript2");

 

$.when(promise1, promise2).done(function(xhrObject1, xhrObject2) {

  // Handle both XHR objects

});

promise.done(myShowInfoFunction);

promise.fail(myErrorFunction); 

[링크 : https://gist.github.com/steveosoule/6453185]


[링크 : http://han41858.tistory.com/11]

[링크 : http://epthffh.tistory.com/entry/promise-패턴-예제]


'Programming > jquery' 카테고리의 다른 글

jquery ajax json flask  (0) 2019.01.07
jquery this 버튼 checked  (0) 2019.01.07
ajax async와 jquery  (0) 2019.01.04
jquery ajaxsetup()  (0) 2018.12.14
jquery draggable  (0) 2018.12.09
Posted by 구차니
Programming/jquery2019. 1. 4. 15:08

jquery ajax에서 async:false 하면 동기로 작동하는건 jquery 1.8 이후로 막혔다고 한다.

어쩐지.. ㅠㅠ


결국에는(?) promise를 써봐야겠네 흑... ㅠㅠ


[링크 : https://okky.kr/article/408594]

[링크 : http://epthffh.tistory.com/entry/promise-패턴-예제]

'Programming > jquery' 카테고리의 다른 글

jquery this 버튼 checked  (0) 2019.01.07
ajax / promise / jquery  (0) 2019.01.04
jquery ajaxsetup()  (0) 2018.12.14
jquery draggable  (0) 2018.12.09
jquery select 인덱스 얻기  (0) 2018.12.05
Posted by 구차니
Programming/jquery2018. 12. 14. 16:45

ajax를 콜하기 전에 ajax의 요청 옵션을 지정하는 녀석.

URL을 일괄 변경하는법을 고민했는데 생각해보니.. 이녀석으로는 prefix만 지정은 못하니 의미 없을 듯?


$.ajaxSetup({

  url: "ping.php"

});


$.ajax({

  // url not set here; uses ping.php

  data: { "name": "Dan" }

}); 

[링크 : https://api.jquery.com/jquery.ajaxsetup/]

[링크 : https://www.w3schools.com/jquery/ajax_ajaxsetup.asp]

[링크 : http://findfun.tistory.com/389]

'Programming > jquery' 카테고리의 다른 글

ajax / promise / jquery  (0) 2019.01.04
ajax async와 jquery  (0) 2019.01.04
jquery draggable  (0) 2018.12.09
jquery select 인덱스 얻기  (0) 2018.12.05
jquery 셀렉터 - 특정 문장으로 시작하는 id 찾기  (0) 2018.11.07
Posted by 구차니
Programming/jquery2018. 12. 9. 20:45

div를 띄우고 그걸 마우스로 이리저리 움직이는걸 찾아보니

jquery에서 draggable 이라고 제공하는 듯?

(그러고 보면.. 네이버 지도에서 본거 같기도 하고..)


[링크 : https://stackoverflow.com/questions/8569095/draggable-div-without-jquery-ui]

[링크 : https://jqueryui.com/draggable/]

'Programming > jquery' 카테고리의 다른 글

ajax async와 jquery  (0) 2019.01.04
jquery ajaxsetup()  (0) 2018.12.14
jquery select 인덱스 얻기  (0) 2018.12.05
jquery 셀렉터 - 특정 문장으로 시작하는 id 찾기  (0) 2018.11.07
jquery prepend  (0) 2018.11.06
Posted by 구차니