Category: Programming

0

ajax 비동기 async false or true

ajax 비동기 async false or true Ajax를 사용해서 이벤트 발생시 기본적으로 리턴이 올때까지 기다려주는게 아니고다음 명령어를 실행시킬수 있습니다.상황에 따라서 리턴값이 올때까지 기다리게 해야될경우가 있는데요ajax 소스에 async :false 를 넣어주면 됩니다.기본적으로 async : true로 설정되어있어서 , 다음 명령을 바로

0

Java 주석 코드 템플릿

Java 주석 코드 템플릿 Files (파일이 생성될때의 템플릿) 해당 프로젝트의 머릿말 기록1234/** ${project_name}* Copyright ${date} Extrus inc. all rights reserved.*/ Types (클래스 파일이 생성되고 기록되는 머릿말)12345678910/*** $

0

Jquery 스크롤링 페이징 구현

Jquery 스크롤링 페이징 구현 1234567891011/*** 스크롤링 페이징을 위한 처리*/$(document).ready(function(){ $("#scrollPaging").scroll(function(ev){ if($(this).scrollTop() == (document.getElementById("scr

0

Jquery Ajax Util

Jquery Ajax Util Ajax Util 코드의 불필요한 반복이 있기에 만들어 보았다Class부123456789101112131415var AjaxUtil = function(url, data) { this.url = url; this.data = data;}AjaxUtil.prototype.getAjax = funct

0

Java Array 집합처리

Java Array 집합처리 ArrayList와 ArrayList의 차집합&교집합&합집합을 하기 위한 코드 !!! 이런 코딩을 위해서 라이브러리를 추가해야한다. (첨부 참조)CollectionUtils의 API위치는 http://commons.apache.org/collections/apidocs/ 여기이다. Ex)12345678910111

0

Ajax Template

Ajax Template 1234567891011121314$.ajax({ type : "POST", url : "uafReserveCreateUser.do", dataType : "json", cache : false, data : $("#apopForm").serialize(), success : functio

0

Java Properties 핸들링 클래스

Java Properties 핸들링 클래스 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980import java.util.Propert