Front/JS & jQuery

[jQuery] html 파일 ajax로 가져오기

오선지♬ 2023. 11. 3. 18:43
728x90
반응형

		$.ajax({
			url: url,
			async: false,
			responseType: 'html',
			success: function (result) {
            	// 성공시 처리할 로직 작성
			}
		});
728x90
반응형

'Front > JS & jQuery' 카테고리의 다른 글

[jQuery][datatables] colReorder  (0) 2023.11.23
[js][bootstrap] 모달창 이벤트  (0) 2023.11.05
[jQuery].css()  (0) 2023.10.30
[jQuery] getScript()  (0) 2023.10.25
[jQuery] resizable 이용하여 테이블 컬럼 너비 조정하기  (0) 2023.10.24