티스토리 뷰
"pitcher_team_id"라는 id를 가진 select box가 변경 되면 선수 이름을 선택 할 수 있는 select box에 선수 명단을 update해주는 기능을 만들려고 할 때 .php로 post로 parameter를 넘겨주고 결과 값을 받아서 해당 select box에 선수 명단을 update 해주기 위한 기능이다.
index.php
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 32 33 | $("#pitcher_team_id").bind("change", function() { alert("hello pitcher changed"); //parameter를 만든다. var lv_params = {"team_id":"SS"}; call_ajax_and_update_controller(lv_params); }); var call_ajax_and_update_controller = function(params){ $.ajax({ type: "POST", url: "ajax_team_dao_client.php", data: params, success: function(data) { //console.log(data); // show response from the php script. //location.reload(); console.log(data); update_select_controller(data); }, error:function(xhr, status, thrown){ } }); } var update_select_controller = function( json_list, target_select_box ){ } | cs |
받는 쪽은 아래와 같다.
ajax_team_dao_client.php
<?php
var_dump($_POST);
var_dump($_POST['team_id']);
끗.
728x90
'Language > Node.js' 카테고리의 다른 글
javascript 하루 더하기, 타임스템프 (0) | 2016.05.31 |
---|---|
html+javascript 달력, 날짜 더하기 빼기 (0) | 2016.05.12 |
javascript 전월 구하는 법 (0) | 2015.01.06 |
javascript 반올림 및 소수점 처리 (0) | 2014.07.30 |
javascript 마지막 날짜 구하는 법 (0) | 2014.07.03 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- docker container tissue box
- 도커각티슈박스
- docker container tissue
- 싱가폴
- Linux
- docker container case
- 도커티슈케이스
- 이직
- 도커티슈박스
- 도커컨테이너
- vim
- docker container whale
- 2017 티스토리 결산
- 개발자
- Sh
- shellscript
- 도커각티슈케이스
- docker container
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함