1. ajax 골격
$.ajax({
type: "GET",
url: "여기에URL을입력",
data: {},
success: function(response){
console.log(response)
}
})
2. 로딩 후 바로 실행
$(document).ready(function(){
listing();
});
function listing() {
console.log('화면 로딩 후 잘 실행되었습니다');
}
'프로그래밍 > Python' 카테고리의 다른 글
og 태그 세팅 (0) | 2022.04.13 |
---|---|
MongoDB Sort ( 파이썬 db 호출 후 정렬) (0) | 2022.04.12 |
나홀로메모장 프로젝트 2 - 뼈대 코드 (app.py) (0) | 2022.04.07 |
Beautiful Soup 크롤링 (with 파이썬) (0) | 2022.04.07 |
flask 사용법 (with 파이썬) (0) | 2022.04.04 |