수강 기록

2992 단어
진급 11
변수의 라이프 사이클
전역 변수, window와 동일
함수 안의 변수: 함수 실행 시작, 출생, 함수 호출 종료, 사망
기본 역할 영역이 사라지면 메모리가 회수됩니다.
메모리가 인용되면 회수할 수 없습니다.
var 역할 영역
근접 원칙, 현재 역할 영역 찾기, 원형 체인의 위조 코드 찾기 사용 가능
변수 승급,var 작용역 꼭대기까지 승급, 생각하지 말고 먼저 승급
setTimeout(code,time)
setInterval(code, time)을 최소화할 때
비동기: 결과를 기다리지 않고 함수를 되돌려줍니다
disabled, 요소가 비활성화되었음을 나타냅니다.
이 요소의disabled 속성이true로 설정되면, 요소가 비활성화되고, 비활성화된 속성이 페이지에서 통합니다
회색 텍스트는 사용자의 동작에 응답할 수 없고 커서를 받을 수 없습니다.

  

        
        
        <select name="    " id="setTime">
            <option value="1" selected="selected">1  </option>
            <option value="5">5  </option>
            <option value="10">10  </option>
        </select>
        <button id="star">  </button>
        <button id="pause" disabled="true">  </button>
        <button id="resume" disabled="true">  </button>
        <div id="show">
        </div>
    
    
        <script type="text/javascript">
         var  timeLeft=0;
         var  timeOutId;
            function showTime(){
                show.innerText=timeLeft;
                if(timeLeft===0){
                    return
                }
                timeLeft-=1;
            timeOutId=setTimeout(showTime,1000)
            }
           star.onclick=function(){
            pause.disabled=false;
                if(timeOutId){
                    window.clearTimeout(timeOutId)
                }
       timeLeft=document.getElementById('setTime').value;
         timeLeft=parseInt(timeLeft)*60
             showTime()
            }
            pause.onclick=function(){
                 pause.disabled=true;
                 resume.disabled=false;
                window.clearTimeout(timeOutId)
            }
            resume.onclick=function(){
                 pause.disabled=false;
                 resume.disabled=true;
                showTime()
            }
        </script>
    

</code></pre> 
 <h2>bom</h2> 
 <p>window.history.back<br/> window.history.forword<br/> window.history.go(-1)  <br/> //www.baidu.com        <br/> window.location.href=<br/> window.location=''href     <br/> location.port   <br/> location.hostname    <br/> location.host           <br/> location.pathname    <br/> location.search       <br/> window.location.hash  <br/> location.orgin  +  +   <br/> window.name,    a target='frank' _self    <br/> window.navigator.userAgent        ,<br/> window.open(url,windowName,feature)<br/> window.opener(      )</p> 
</article>
                            </div>
                        </div>

좋은 웹페이지 즐겨찾기