php 18

[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