아래의 소스는 Ajax를 이용하여 PHP 페이지에 JSON 타입의 데이터를 보내는 소스이다 간단한 예제로 아래의 소스를 응용하여 더 복잡한 기능의 페이지를 제작할 수 있다 [ajax.html 소스] 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 Ajax Test $('#getResult').click(function(){ $('#result').html(''); $.ajax({ url: 'result.php', dataType: 'json', type: 'POST', data: {'msg': $('#msg').val()}, success: function(result){ if(result['result']=..