javascript 구독 발표
3279 단어 자바 script
QR 코드
머리말
코드 구현
function SourceCribe () {
// / DOM
var body = document.querySelector('body');
if (!document.querySelector('.magazine')) {
var element = document.createElement('mark');
element.setAttribute("class", "magazine");
body.appendChild(element);
}
this.magazine = document.querySelector('.magazine');
//
this.publish = function (source, data) {
if (!typeof source === 'string') {
return false;
}
var oEvent = new CustomEvent(source, {
bubbles: true,
cancelable: false,
detail:data
});
this.magazine.dispatchEvent(oEvent);
};
// ,handler ,
this.subscribe = function (source, handler) {
if(!typeof source === 'string' || !typeof value === 'function') {
return false;
}
this.magazine.addEventListener(source, handler, false);
};
//
this.unsubcribe = function (source, handler) {
if(!typeof source === 'string' || !typeof value === 'function') {
return false;
}
this.magazine.removeEventListener(source, handler, false);
};
}
(function(window){
window.addEventListener('load',function(evt){
var sourceCribe = new SourceCribe();
var loveHandlerAlways = function (evt) {
console.log("always " + evt.detail);
};
var loveHandlerEver = function (evt) {
console.log("ever " + evt.detail);
};
sourceCribe.subscribe('love', loveHandlerAlways);
sourceCribe.subscribe('love', loveHandlerEver);
sourceCribe.publish('love','500 days with summer');
sourceCribe.unsubcribe('love', loveHandlerAlways);
sourceCribe.publish('love','500 days with summer');
});
})(window)
후속
QQ / 이메일: 491229492
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Thymeleaf 의 일반 양식 제출 과 AJAX 제출텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.