250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 과학백과사전
- 방식으로 텍스트
- test
- word2vec
- db
- 코사인 유사도
- 幼稚园杀手(유치원킬러)
- 게시판 만들기
- tomoto
- 토픽추출
- 파이썬
- jsp 파일 설정
- 지마켓
- Python
- 자바
- (깃)git bash
- pytorch
- Topics
- Websocket
- spring MVC(모델2)방식
- RESFUL
- oracle
- Gmarket
- mysql
- 네이버뉴스
- 크롤링
- java
- 이력서
- lda
- r
Archives
- Today
- Total
무회blog
js(jQuery) Ajax ,Test_001 하기, (txt 파일 load 해서 읽어 오기) 본문
/**
* js(jQuery) Ajax Test 하기
* TODO:
* , js -> 렌더링 순서 , html -> head -> body , (CSS -> DOM 순서), 외부 링크 CSS 먼저/ Script body 아래 추천
* , js -> ajax(test)
* , 참고사이트 : https://www.w3schools.com/jquery/jquery_ajax_load.asp
*/
$(function () {
/**
* test load, to
* responseTxt - 호출성공시 결과 내용 포함 / contains the resulting content if the call succeeds
* statusTxt - 상태 포함 / contains the status of the call
* xhr - XMLHttpRequest 객체 포함 / contains the XMLHttpRequest object
*/
// ----------------------------------------
$(function () {
$("button").click(function () {
$("#div1").load("ddemo_test.txt", function (responseTxt, statusTxt, xhr) {
console.log("clickButton");
if (statusTxt == "success")
alert("External content loaded successfully!");
if (statusTxt == "error")
alert("Error: " + xhr.status + ": " + xhr.statusText);
});
});
/** test load method
* local 테스트 시 에러가 날수 있음 ,
* chrome 바로가기로 만든 아이콘에서 우클릭 -> 속성 -> 대상 에다가 아래 내용 추가
* --disable-web-security --user-data-dir=%LOCALAPPDATA%\Google\chromeTemp -–allow-file-access-from-files
* 그러면 로컬에서 Security 걸려서 Cors 에러가 날 가능성 제거하여 ajax test 가 가능 함
*
*/
// ----------------------------------------
// $("button").click(function () {
// console.log("clickButton");
// // $("#div1").load("demo_test.txt");
// $("#div1").load("demo_test.txt #p1");
// });
});
});
'js > jQuery' 카테고리의 다른 글
js(jQuery) Ajax ,Test_003 하기, (http Get method 사용하여 data 읽어 오기) (0) | 2022.06.19 |
---|---|
js(jQuery) Ajax ,Test_002 하기, (https url경로의 json 데이터 load 해서 읽어 오기) (0) | 2022.06.19 |
//지정내용, 그리드 제목 없애기 / jQuery_css (0) | 2022.06.14 |
BootStrap 모달창 넣기 (0) | 2022.06.13 |
제이쿼리라이브러리 , jquery-3.4.1.js (0) | 2020.04.09 |
Comments