본문 바로가기

분류 전체보기191

[MYSQL] 전체 국가 데이터 모음 CREATE TABLE IF NOT EXISTS `g5_nation` ( `idx` int(11) NOT NULL AUTO_INCREMENT, `nation` varchar(255) NOT NULL, `alpha_2` varchar(255) NOT NULL, `alpha_3` varchar(255) NOT NULL, PRIMARY KEY (`idx`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; INSERT INTO `g5_nation` (`idx`, `nation`, `alpha_2`, `alpha_3`) VALUES (1, '가나', 'GH', 'GHA'), (2, '가봉', 'GA', 'GAB'), (3, '가이아나', 'GY', 'GUY'), (4, '감비아', 'GM', .. 2023. 3. 8.
[JQUERY] 위도 경도 function getloc() { navigator.geolocation.getCurrentPosition(updateLocation_m, handleLocationError_m); } function updateLocation_m(position) { str_lat = position.coords.latitude; str_lng = position.coords.longitude; $('#comp_list').append("3"); //get_aound_hospital(str_lat,str_lng); } function handleLocationError_m(error) { alert('위치서비스를 허용해 주세요.'); //get_aound_hospital(str_lat,str_lng); $('#sub.. 2023. 3. 8.
[PHP] 텍스트자르고 말줄임표 붙이기 function text_dot($text, $len){ $text = strip_tags($text); if(strlen($text) 2023. 3. 8.
[JQUERY] 라디오버튼_선택된것과 안된것들 css 지정 $(document).on("click",".radio_label1",function(){ var selected_label = $(this); // 가까운 상위요소 검색 selected_label.closest('td').find(".radio_label1").each(function() { $(this).css("background-color","#ddd"); $(this).css("color","#000"); }); selected_label.css("background-color","#2facb2"); selected_label.css("color","#fff"); }); 2023. 3. 8.
[JQUERY] 무한스크롤 (ajax 이용) // 특정 위치로 스크롤이 향할 때, get_ajax.php에서 데이터를 가져온다. $(document).scroll(function() { var item_row_num = 5; var maxHeight = $(document).height(); var currentScroll = $(window).scrollTop() + $(window).height(); if (maxHeight 2023. 3. 8.
[JS] 숫자에 콤마 붙이기 function addComma(x) { var idx = 0; while(true){ idx = x.indexOf(","); x = x.replace(",",""); if(idx 2023. 3. 8.