프로그래밍 언어51 ajax호출 예시 ajax로 값 불러오고 보내기 function connect(murl, input){ $.ajax({ type : "POST", contentType : "application/json; charset=utf-8", url : "/cmd"+murl, // data : input, //데이터를 받을 input 값 dataType : 'text',//return String success : function(result) { console.log(murl+"> result >"+result); if(result.includes("connected")){//already connected 포함 alert(result); devices("/adbDevices",dom.devList); //device 함수 실행.. 2019. 6. 10. callback 함수 처리 예시 command("/devMode","temp",devices); //-----(1) //command function command(murl,input,callback){//-----(2) ....... //콜백함수 처리 if(appId == 'abc'){ //appId가 abc라면 command함수 처리 후에 devices함수 호출 //if(typeof callback === 'function') //콜백이 함수일때 callback("/callIntent",appId);//-----(3) } } function devices(murl, field){//-----(4) . . ... }command --> function command함수 호출 ---> callback 함수 .. 2019. 6. 10. javascript / html html에서 dom 객체 document.getElementById('-----' ); document.getElementById('~~').value; document.getElementById("data").disabled = 'disabled'; document.getElementById("data").removeAttribute("disabled"); -> HTML data 객체에 disable 설정을 넣고 없애기 //버튼클릭시 실행함수 document.getElementById('data').addEventListener('click', function(evt){ //버튼이 클릭했을때 window.open("popupPath.. 2019. 6. 10. JavaScript JavaScript 자바 스크립트 개요 자바 스크립트 객체 기반의 언어이다. 웹의 동작을 구현할 수 있다. 자바 vs 자바스크립트 자바 자바스크립트 컴파일언어 인터프리터언어 타입 검사를 엄격하게 함 타입을 명시하지 않음 클래스 기반의 객체 지향 언어 프로토타입 기반의 객체 지향 언어 자바 스크립트 문법 대소문자 구별한다. 대소문자 정확히 구분해야 한다. 식별자는 영문자 , _ $ 만은 사용할 수 있다. 식별자 작성 방식 Camel Case 방식 식별자가 여러 단어로 이루어 질 경우에 첫 번째 단어는 모두 소문자로 작성하고 그 다음 단어부터는 첫 문자만 대문자로 작성하는 방식이다. var firstVar = 10; // Camel Case 방식 Underscore Case 방식 식별자로 이루는 단어들을 소.. 2019. 4. 8. 이전 1 ··· 4 5 6 7 8 9 10 ··· 13 다음 반응형