<%@ page contentType = "text/html; charset = utf-8" %>

'java, jsp, spring, egov' 카테고리의 다른 글

jsp 파일 다운로드  (0) 2016.02.04
모바일 접속 구별  (0) 2015.03.31
mod 함수를 이용한 나누기  (0) 2015.01.17
프롬프트(scan) 입력받기  (0) 2015.01.10
기본 메인 메서드  (0) 2015.01.10
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
<script>
function agree() {
	if($("#agree").is(":checked") == true) {
		$(".support_form").fadeIn();
		var target_offset = $("#agree").offset();
		var target_top = target_offset.top;
		$('html, body').animate({scrollTop:target_top}, 500);
	} else {
		$(".support_form").fadeOut();
	}
}

$(document).ready(function() {
	$(".support_form").hide();
});
</script>
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
 /*
   * strTemp  : [필수] 크로스사이트 스크립팅을 검사할 문자열
   * level    : [옵션] 검사레벨
   *            0 (기본) -> XSS취약한 문자 제거
   *            1 (선택) -> 단순한 <, > 치환
   */
   
function XSS_Check(strTemp, level) {     
	if ( level == undefined || level == 0 ) {
		strTemp = strTemp.replace(/\<|\>|\"|\'|\%|\;|\(|\)|\&|\+|\-/g,""); 
	} else if (level != undefined && level == 1 ) {
		strTemp = strTemp.replace(/\</g, "&lt;");
		strTemp = strTemp.replace(/\>/g, "&gt;");
	}
	return strTemp;
}
출처 : http://ddoong2.com/769

 

'javascript, jquery' 카테고리의 다른 글

div 스크롤바 이동, 포커스  (0) 2014.09.27
jquery 체크박스 체크 후 해당 위치로 이동  (0) 2014.09.27
selector(셀렉터)  (0) 2014.09.27
jquery 기본 사용법  (0) 2014.09.27
jquery.js / jquery.min.js 차이  (0) 2014.09.27
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
header("Set-Cookie: hidden=value; httpOnly");
setcookie('Foo','Bar',0,'/', 'www.sample.com' , FALSE, TRUE);

<?php
// None HttpOnly cookie: setcookie("abc", "test", NULL, NULL, NULL, NULL, FALSE);
// HttpOnly cookie: setcookie("abc", "test", NULL, NULL, NULL, NULL, TRUE);
?>

'php, codeigniter' 카테고리의 다른 글

도메인 기본 컨트롤러 선언 / 404 에러 컨트롤러  (0) 2014.10.08
extract - get / post / server / cookie  (0) 2014.10.07
숫자앞에 0 붙이기  (0) 2014.09.27
변수명으로 변수 + 변수  (0) 2014.09.27
모든 변수 View  (0) 2014.09.27
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,

* 일반적인 경우

$a = "대한";
$b = "민국";
$c = $a.$b;

* 배열의 경우

$a = 1;
$b = 2
$c = $row[$a.$b];
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
$("#select") - 이 부분이 셀렉터
$("*") - 전부
$("#select") - ID
$(".select") - class
$("input") - 모든 input 태그
$("div > span") - div 내에 있는 span 태그
$('[name='test']') - name이 test인 태그
$("div, span") - div, span 둘 다 선택
$(":text") - 모든 text
$(":checked") - 모든 체크 폼
$(":input") - 모든 input 폼
$("tr:odd") - 홀수 줄
$("tr:even") - 홀수 줄
$("tr:first") - 첫째 줄
$("tr:last") - 마지막 줄

'javascript, jquery' 카테고리의 다른 글

jquery 체크박스 체크 후 해당 위치로 이동  (0) 2014.09.27
XSS 방어 스크립트  (0) 2014.09.27
jquery 기본 사용법  (0) 2014.09.27
jquery.js / jquery.min.js 차이  (0) 2014.09.27
jquery attr - prop 변경  (0) 2014.09.27
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,