문서 편집 권한이 없습니다. 다음 이유를 확인해주세요: 요청한 명령은 다음 권한을 가진 사용자에게 제한됩니다: 사용자. 문서의 원본을 보거나 복사할 수 있습니다. == 자주 사용하는 함수 구현 == === trim() 구현 === <syntaxhighlight lang="javascript">String.prototype.trim = function () { return this.replace(/(^\s*)|(\s*$)/g, ''); }</syntaxhighlight> ===replaceAll() 구현=== <syntaxhighlight lang="javascript">String.prototype.replaceAll = function(target, replacement) { return this.split(target).join(replacement); };</syntaxhighlight> ===Window.opne() === 팝업을 열고, 팝업창이 닫힐때 부모창 리로드 <syntaxhighlight lang="javascript">$(window).on('beforeunload', function () { opener.location.replace(opener.location.href); });</syntaxhighlight> Javascript 문서로 돌아갑니다.