본문 바로가기

전체 글

(720)
개발/javascript Tip
자바스크립트 폼 리셋 자바스크립트 팁 ( javascript tip ) 자바스크립트 폼 리셋 의 폼 리셋이 필요할 경우 아래와 같은 방법으로 리셋하면 간단히 해결 할 수 있다. document.getElementById('form1').reset() document.forms[0].reset(); document.forms['forms1'].reset(); document.forms.form1.reset(); 그런데 이 방법이 먹히질 않거나 필요한 요소만 골라서 리셋을 해야할 경우가 있다. 리셋이 필요한 elememt를 골라서 리셋하려면, if(document.form1.elements[index].type == 'typename') 일일히 찾아서 지정할 수 밖에 없다. ... Clear All input type="text.. 2011.12.03
개발/javascript Tip
금액을 한글로 표기 해주는 스크립트 자바스크립트 팁 ( javascript tip ) 금액을 한글로 표기 해주는 스크립트 뒷자리부터 한글짜식 단위 붙여가며 한글로 바꾸는 방식입니다; 음수는 안됩니당; 2011.12.03
개발/javascript Tip
마우스 오른쪽클릭방지 해제 스크립트 마우스 오른쪽클릭방지 해제 스크립트 javascript:function r(d){d.oncontextmenu=null;d.onselectstart=null;d.ondragstart=null;d.onkeydown=null;d.onmousedown=null; d.body.oncontextmenu=null;d.body.onselectstart=null;d.body.ondragstart=null;d.body.onkeydown=null; d.body.onmousedown=null;}function s(f){if(f.frames.length!=0){for(var i=0; i 2011.12.03
개발/javascript Tip
Trim 공백제거 Trim 공백제거 String.prototype.trim = function() { return this.replace(/^\s+|\s+$/g,""); } String.prototype.ltrim = function() { return this.replace(/^\s+/,""); } String.prototype.rtrim = function() { return this.replace(/\s+$/,""); } 2011.12.03
개발/javascript Tip
경고없이 창닫기 경고없이 창닫기 방법 2 : 프래임 속에있을때 닫는 법 2011.12.03
개발/php
외부 이미지 저장 하는 방법 저장 하기 php 외부 이미지 저장 하는 방법 저장 하기 php 2011.12.03