검색결과 리스트
전체에 해당되는 글 153건
- 2012.07.08 [jQuery] 사용법 , 체크박스 선택유무
- 2012.07.08 전자 전부 초기 설정 에러 POM.xml 클레스 추가
- 2012.06.27 [java] 파일정보 가져오기
- 2011.12.14 [재미] 뽀로로성우가 부른 좋은날 >< 1
- 2011.11.01 맛집 노량진 수산시장 1
- 2011.09.26 [java] 날짜 기간 설정
- 2011.08.26 [jsp] ServletActionContext 에러날때
- 2011.08.26 [ajax] 익스플로9 ajax 안됄때.
- 2011.08.19 [ajax] 한글처리
- 2011.08.18 [javascript]라디오버튼 체크 유무확인
글
1. 체크박스 선택 유무 ::::: 방법 1 |
var iCkecked = 0 ;
|
체크박스 선택 유무 ::::: 방법 2 |
$( 'input:checkbox[name=userGroup]:checked').length
|
라디오 값 가져오기 |
$('input:radio[name=timeType]:checked').val()
|
2. trim |
var str = $.trim(value);
|
3. 선택된 값 읽기 |
$("#select_box option:selected").val(); jQuery로 선택된 내용 읽기 |
http://hanjiq.egloos.com/2358924 기초 예제
http://pat.im/906 -박스 서서히 사라지는 예제
http://rubis.tistory.com/294 ajax 예제
http://leandrovieira.com/projects/jquery/lightbox/ 이미지 박스에 하이라이트
http://www.mimul.com/pebble/default/2007/11/10/1194695220000.html 이미지 로더 ? 반만 다운후 다보이게
포문
<html> |
http://findfun.tistory.com/404 --예제 많음
--> http://findfun.tistory.com/421 ---- trim
--> http://findfun.tistory.com/414 ----- 오브젝트 배열로 만들기 ~
--> http://findfun.tistory.com/410 ---숫자 체크
--> http://findfun.tistory.com/408 -- isPlainObject() 오브젝트 가 맞는지 확인
--> http://findfun.tistory.com/403 -- each 반복문 ..
--> http://findfun.tistory.com/401 -- ajax 할때 파라메타 쉽게 만들기
--> http://findfun.tistory.com/400 -- ajax post
http://blog.naver.com/tweety2411?Redirect=Log&logNo=100161568560 ajax 파일 업로드
설정
트랙백
댓글
글
에러 내용 : Error configuring application listener of class org.springframework.web.context.ContextLoaderListener 전자정부프레임워크의 개발 준비를 마친 후 기본 프로젝트를 생성하고 공통컴포넌트를 추가하면 이와같은 에러가 빡 난다!! 아놔~ 이거 뭐야.. ClassNotFoundException pom.xml 즉, tomcat을 띄울때 이넘이 jar파일(pom.xml에 설정해준(dependencies로))을 설정 프로젝트의 오른쪽마우스 클릭 -> Properties -> Deployment Assembly -> Add -> Java Build Path Entries -> Next -> Maven Dependencies -> Finish |
설정
트랙백
댓글
글
package util;
import java.io.File;
public class ShowFileList {
public static void main(String[] args) throws Exception {
try {
String dir = "D";//
(new ShowFileList()).showFileList(dir);
} catch (Exception ex) {
ex.printStackTrace();
}
}
public void showFileList(String path) throws Exception {
File dir = new File(path);
File[] files = dir.listFiles();
for (int i = 0; i < files.length; i++) {
File file = files[i];
if (file.isFile()) {
String strFileName = file.getCanonicalPath().toString().toLowerCase();
if( strFileName.indexOf(".svn") == -1 && (strFileName.indexOf(".java") > -1 || strFileName.indexOf(".xml") > -1) )
System.out.println("[File]"+file.getCanonicalPath().toString().replace("\\", "/").replace(".java", ".class"));
} else if (file.isDirectory()) {
// System.out.println("[Directory]"+file.getCanonicalPath().toString());
try {
showFileList(file.getCanonicalPath().toString());
} catch (Exception e) {
}
}
}
}
}
설정
트랙백
댓글
글
겁나 귀여움
3단고 음 쩌내요 ㅎㅎ
아이쿸 하나 둘~아임인마드뤼~이이이이이이이이이이이이이이익에에ㅞㄱ[ㅇ[ㄱ아아으아아아~ 이러케 조흔날 하아 흙흙흞
설정
트랙백
댓글
글
설정
트랙백
댓글
글
java.util.Date d = new java.util.Date();
SimpleDateFormat df = new SimpleDateFormat("yyyyMMdd");
//marketSearchBean.setStartDt(DateCalcUtil.addDate(-365, df.format(d)));
//marketSearchBean.setEndDt(DateUtil.toDate());
설정
트랙백
댓글
글
프로젝트 - > 오른쪽 마우스 -> java Build path
web app Libaries 언바운드이면
삭제 후
add library -> web appLibraires 선택 넥스트-> 확인
설정
트랙백
댓글
글
인터넷 익스플로러에서 작업을 하는 중에,
AJAX로 만들어진 요청이 계속해서 같은 값만을 불러 오는 경우가 발생..
익스플로러에서 같은 파라미터 값을 갖는 URL 요청을,
캐쉬되어 미리 저장하고 있던 페이지로만 반복해서 리턴해서 발생한 문제였다.
이러한 문제의 해결법은, 아래와 같은 방법이 있을 수 있겠다.
response.setHeader("Pragma", "no-cahce");
response.setHeader("Cache-Control", "no-store"); //HTTP 1.0
response.setHeader("Cache-Control", "no-cache"); //HTTP 1.1
또는,
ajax 요청에 사용되는 URL 끝에 유니크한 파라미터 값을 붙여서 날리는 방법이 있다.
ex) Math.round(Math.random()* (new Date().getTime())); :)
참고 :
http://savour.tistory.com/tag/cache-control
설정
트랙백
댓글
글
escape(encodeURIComponent('한글 파라메타값'))
java단
URLDecoder.decode("받은 데이터","UTF-8")
설정
트랙백
댓글
글
var iCnt = 0 ;
for(var i=0; i<document.fm.elements["파라메타명"].length ; i++){
if(document.fm.elements["파라메타명"][i].checked ==true)
iCnt++;
}
if (iCnt ==0) {
alert("선택해주세요");
document.fm.elements["파라메타명"][0].focus();
return;
}
RECENT COMMENT