프론트엔드 개발자로서 어떤 JS 코드를 읽어볼 가치가 있나요?
읽어볼만한 JS 코드이기 때문에 업무 효율성과 개발 수준을 높일 수 있는 코드여야 합니다. 다음은 읽어볼만한 코드입니다.
1. IE를 사용하여 컴퓨터를 다시 시작하거나 종료합니다.
버튼>2. window.open( 상위 창) 중 하위 창 닫기 이벤트 메서드(타이머 구현) 중 코드는 다음과 같습니다.
p>
document.fm_Info.txtValue.value=""
winOpen= window.open("child.htm","","toolbar=no, location=no, 디렉터리=no, status=no, menubar=no" )
timer=window.setInterval("IfWindowClosed ()",500);
3. javascirpt를 사용하여
함수 storeCaret (textEl) {
if (textEl.createTextRange)
textEl.caretPos = document.selection.createRange( ).duplicate();}
function insertAtCaret (textEl, text) {
if (textEl.createTextRange && textEl.caretPos) {
var caretPos = textEl.caretPos;
caretPos.text =caretPos.text.charAt(caretPos.text.length - 1) == ' ' ?text + ' ' : text;}else
textEl.value = text;
프론트엔드 개발자마다 시작점이 다르며 읽기로 선택하는 코드도 달라야 합니다. 자신이 부족한 방향에 맞춰 그에 맞는 우수한 오픈소스 프로젝트를 찾아야만 코드 수준을 높일 수 있습니다.