| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 | 31 |
- vimrc 옵션
- CentOS
- CentOS 6
- node.js
- httpd-mpm.conf
- python 3.X 소스 설치
- Node.js 소스 설치
- httpd-info.conf
- httpd-autoindex.conf
- httpd-default.conf
- httpd 2.2.32
- PHP 5.2.17 .ini
- PHP 5.2 .ini
- Mod_Security 룰 셋
- epel repository
- httpd-dav.conf
- python 3.5.10
- httpd.conf
- mod_unique_id
- unique_id
- httpd-vhosts.conf
- MySQL
- gcc update
- jQuery
- CentOS 6.10
- Node.js apache 연동
- MySQL 5.1.41
- vim color scheme
- Repository
- apache 연동
- Today
- Total
목록Web Development/JavaScript (12)
곰시기's
function get_query( target ) { var qs = target.split( "&" ); for( var i = 0, result = {}; i < qs.length; i++ ) { qs[i] = qs[i].split( "=" ); result[qs[i][0]] = decodeURIComponent( qs[i][1] ); } return result; } 출처 - mine-it-record.tistory.com/278
function unescapeHtml( str ) { if ( str == null ) { return ""; } return str.replace( /&/g, '&' ).replace( /</g, '' ).replace( /"/g, '"' ).replace( /'/g, "'" ).replace( /'/g, "'" ); } 출처 - m.blog.naver.com/PostView.nhn?blogId=loveful&logNo=221309163860&proxyReferer=https:%2F%2Fwww.google.com%2F
$.fn.dragCheckbox = function () { var source = this; var ConditionA = false; var ConditionB = false; source.parent().css({ '-webkit-user-select': 'none', '-moz-user-select': 'none', '-ms-user-select': 'none', '-o-user-select': 'none', 'user-select': 'none' }); source.mousedown(function(){ ConditionA = true; ConditionB = true; }); $(document).mouseup(function(){ ConditionA = false; ConditionB = f..
$( "#test1" ).change(function( e ){ $.ajax({ type: "post", url : "https://", data: { mode : "test", sido : $("#test1").val() }, contentType: 'application/x-www-form-urlencoded; charset=euc-kr', dataType:"html", success : function( data ) { data = JSON.parse( data ); if( data.code == "002" ) { let html = "test"; html += data.content; $( "#test" ).empty(); $( "#test" ).append( html ); searchFunc()..