본문 바로가기

프로그래밍 언어/JavaScript25

selectBox selectBox device=['aaa','bbb','ccc','ddd']; var str =''; for(i=0;i 2019. 6. 14.
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.
반응형