반응형
ajax를 이용하는 도중 하나 이상의 값을 반환 받을시 각각의 input 에 입력시켜줘야하는데 ajax를 잘몰라서 쓴 방법
// 반환 받은 값 txt
var txt = xhr.responseText;
// 반환 받은 값에 "|(파이프)"을 구분자로 지정
copy = txt.split("|");
document.getElementById('input_id1').value = copy[0];
document.getElementById('input_id2').value = copy[1];
// 반환 받은 값 txt
var txt = xhr.responseText;
// 반환 받은 값에 "|(파이프)"을 구분자로 지정
copy = txt.split("|");
document.getElementById('input_id1').value = copy[0];
document.getElementById('input_id2').value = copy[1];
반응형
'Programing > javascript' 카테고리의 다른 글
jQuery preventDefault() (0) | 2011.06.23 |
---|---|
jquery 자식창에서 부모창으로 값 전달. (0) | 2011.02.08 |
jquery 핸들링 1 [Table 핸들링][펌] (0) | 2010.08.30 |
jquery input의 value 값 알아오기 (1) | 2010.04.12 |
javascript opener 오류 "엑세스가 거부 되었습니다." (2) | 2010.03.26 |
iframe height 자동 리사이징 (1) | 2010.01.22 |
간단한 ajax + php (5) | 2010.01.04 |
javascript onload (0) | 2009.12.10 |