js 성능 최적화 정리의 타성 불 러 오기
2249 단어 성능 최적화
function addEvent(element,type,handler){
if(element.addEventListener){
element.addEventListener(type,handler,false)
}else if(element.attacheEvent){ //attacheEvent
element.attachEven('on'+type,function(){
handler.apply(element,arguments); // attachEvent , this
});
}else{
element['on'+type]=handler;
}
}
addEvent , , addEventListener , , attachEvent , , dom 0 。 , addEvent , , , , , ,if , 。
해결 방법: 타성 불 러 오기
function addEvent (element,type,handler) {
if (element.addEventListener) {
addEvent = function (element,type,handler) {
element.addEventListener(type, handler, false);
}
}
else if(element.attachEvent){
addEvent = function (element,type,handler) {
element.attachEvent('on' + type, function(){
handler.apply(element,arguments); // attachEvent , this
});
}
}
else{
addEvent = function (element,type,handler) {
element['on' + type] = handler;
}
}
return addEvent(element,type,handler);
}
함수 성명 시 적당 한 함 수 를 지정 합 니 다.이렇게 하면 처음으로 함 수 를 호출 할 때 성능 을 잃 지 않 고 코드 를 불 러 올 때 만 약간의 성능 을 잃 을 수 있다.
var addEvent = (function () {
if (document.addEventListener) {
return function (type, element, handler) {
element.addEventListener(type, handler, false);
}
}
else if (document.attachEvent) {
return function (type, element, handler) {
element.attachEvent('on' + type, function(){
handler.apply(element,arguments); // attachEvent , this
});
}
}
else {
return function (type, element, handler) {
element['on' + type] = handler;
}
}
})();
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
SQLite 성능 최적화 사례 공유이전에 비교적 많은 데이터의 읽기와 쓰기를 접하지 못했기 때문에 성능 최적화에 대한 관심이 많지 않다. 이번에는 특정한 장면의 대부분이 대량의 읽기와 쓰기에 대해 성능 최적화를 하여 성능을 10배 향상시켰다. 매번 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.