수강 기록
변수의 라이프 사이클
전역 변수, 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>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.