Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 웹하드추천
- 전략
- Linux
- Apache
- HTML
- composer-php
- date
- curl
- file-upload
- variables
- string
- JSON
- Regex
- Laravel
- jquery
- Forms
- UTF-8
- php
- Ajax
- Session
- Arrays
- JavaScript
- MySQL
- post
- 경영
- OOP
- 무료다운로드쿠폰
- function
- 웹하드순위
Archives
- Today
- Total
개발! 딱 깔끔하고 센스있게!
어떻게 ajax 그룹을 php 에서 javascript 본문
이 ajax 코드 있어요.
xmlhttp = new XMLHttpRequest(); xmlhttp.onreadystatechange=function(){ if (xmlhttp.readyState==4 && xmlhttp.status==200) { document.getElementById('addIO').innerHTML+=xmlhttp.responseText; } } xmlhttp.open("GET","http://localhost/Mar7ba/Ontology/getRelatedConceptsAndRelations/3/TRUE",true); xmlhttp.send();
저 php 팀 있어요.
$cars = array('사보','볼보','보마','도요타')
어떻게 배열 cars 를 나의 javascript 에 보낼 수 있습니까?
대답
필리핀 피소
echo json_encode($cars);
자바스크립트
로컬:
var foo = JSON.parse(xmlhttp.responseText);
jQuery 사용하기:
var foo = $.parseJSON(xmlhttp.responseText); //or $.getJSON("url", function(data){ //data is your array });
업데이트
if(xmlhttp.readyState==4 && xmlhttp.status==200){ //document.getElementById('addIO').innerHTML+=xmlhttp.responseText; var cars = JSON.parse(xmlhttp.responseText); //cars will now be the array. //Do whatever you want here. $("#addIO").html(cars.join(", ")); //Join array with ", " then put it in addIO }
jQuerry 사용하려면 < head >
'개발 스크랩 메모 > PHP' 카테고리의 다른 글
PHP 폼 복선 상자와 정의되지 않은 색인 (0) | 2020.12.29 |
---|---|
PHP 파일 쓰기 (0) | 2020.12.29 |
PHP-날짜 사이의 일수를 계산하다 (0) | 2020.12.28 |
Javascript 에서 PHP 를 되돌려볼까요? (0) | 2020.12.28 |
그림 크기 조정 PHP[반복] (0) | 2020.12.28 |
Comments