Created
October 23, 2013 11:41
-
-
Save springcome/7117021 to your computer and use it in GitHub Desktop.
ajax 동기 비동기, jquery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 전화번호를 검색하여 받아온다. | |
| var telNo = ''; | |
| $.ajax({ | |
| url : '', | |
| data : {}, | |
| type : 'post', | |
| sendDataType : 'json', | |
| async : false, | |
| success : function(data) { | |
| telNo = data; | |
| } | |
| }); | |
| // 전화번호를 넣어준다. | |
| $('#telNo').val(telNo); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment