PHP/PHP Reference2 PHP 5 Array 함수 array() - 배열을 생성함 array_change_key_case() — 배열 안의 모든 키를 변경 array_chunk() — 배열을 조각으로 나누기 array_combine() — 키를 위한 배열과 값을 위한 배열을 사용하여 배열을 생성 array_count_values() — 배열 값의 수를 셉니다 array_diff_assoc() — 추가적인 인덱스 확인과 함께 배열 차이를 계산 array_diff_key() — 배열을 비교하고 그 차이값을 반환함 array_diff_uassoc() — Computes the difference of arrays with additional index check which is performed by a user supplied callback functio.. 2013. 7. 25. jQuery Event Reference Event method는 선택한 요소에 대하여 이벤트 핸들러에 함수를 트리거하거나 연결합니다. Event 관련 jQuery 함수의 종류는 아래와 같습니다. bind() : 요소(element)에 이벤트 처리기(handler)를 연결합니다.(바인딩이라고 하죠) $('#foo').bind('click', function() { alert('User clicked on "foo."'); }); // 위의 구문을 보면 bind()의 역할은 id값 foo인 요소에 대하여 click 이벤트에 연결하게 합니다. 유저가 이 foo 요소를 클릭하면 알림창이 나타나게 됩니다. blur() : JavaScript 이벤트인 "blur"를 이벤트 핸들러에 바인딩 하거나 요소에 이벤트를 발생시킵니다. Trigger the han.. 2013. 5. 30. 이전 1 다음