Skip to content

Instantly share code, notes, and snippets.

@springcome
Created October 23, 2013 11:41
Show Gist options
  • Select an option

  • Save springcome/7117021 to your computer and use it in GitHub Desktop.

Select an option

Save springcome/7117021 to your computer and use it in GitHub Desktop.
ajax 동기 비동기, jquery
// 전화번호를 검색하여 받아온다.
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