728x90
728x90
SMALL

전체 글 211

[PHP] jQuery를 이용한 대기상태의 커서 변경

jQuery 를 이용하여대기상태의 커서를원하는 모양으로 변경한다. $( document).ready(function() { ... //////////////////////////////////////////// 대기상태의 커서변경// 커서의 위치를 중앙으로 변경하는 jQuery함수jQuery.fn.center = function () {this.css("position", "absolute");this.css("top", ( $(window).height() - this.height() ) / 2+$(window).scrollTop() + "px");this.css("left", ( $(window).width() - this.width() ) / 2+$(window).scrollLeft() + "px"..

기본카테고리 2010.11.23

PHP] ajax 로 서버에 한글 올려보내고 받을 때

ajax 에서 서버에 한글을 올려보낼때, 즉 ajx 에서 변수값을 받을 때 $fname= rawurldecode(iconv("UTF-8","CP949",$fname)); 와 같이 사용하고, ajax 로 보낼때에는 encodeURIComponent() 를 사용함 예제)//== a.php ==... var sword = new Array("", "가", "나", "다", "라", "마", "바", "사", "아", "자", "차", "카", "타", "파", "하"); function termbox(a){var params = "tab_ix="+a+"&sword="+encodeURIComponent(sword[a]);refresh_term_list(params);tab_ix = a;}function refr..

기본카테고리 2010.11.16

[Linux] 관련 유용한 정보

파일의 속성 변경: chmod 755 mrmud64백그라운드 실행: ./mrmud64 115.68.20.129 20301 &제거: kill -9 프로세스번호프로세스번호 찾기: pstree -p | grep 프로세스명컴파일 결과물 삭제: make clean컴파일: make백그라운드에 실행되고 있는 것들 확인: ps -ef | grep 20301재부팅: root로 로그인한 후 rebootShutdown: root 로 로그인한 후 shutdown -h now===========================================================

기본카테고리 2010.10.08
728x90
728x90
LIST