Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
760 views
in Technique[技术] by (71.8m points)

prevent window.onload being overridden javascript

How to overcome event handlers being overridden? I have a script say a.js

window.onload = function () {
   //Handler in a.js
}

Another script say b.js

window.onload = function () {
   //Handler in b.js
}

where,

a.js is a kind of 3rd party library built by me

b.js is a publisher who uses my script [I can't do any changes out here]

Will onload handler in b.js override a.js's handler?

If yes, How to prevent this from happening?

Will building a queue of all event handlers in a.js and deque them on event help?

But will a.js know all event handlers for an event upfront untill b.js is loaded?

Thoughts and references would help

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

you should use addEventListener() to have various handlers for the same event

window.addEventListener("load", yourfunction, false); 

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...