admin管理员组文章数量:1350940
My application is having hundreds of pages. Now I have to attach an event disablePage
on onSubmit
of form. I don't want to go to each and every page and write:
<form name="frmname" onSubmit="disablePage();">
What I am doing right now is:-
excerpt from mon.js file; [ included in all pages ]
/* we have to attach 'attachFormSubmit' method on onLoad event,
otherwise forms[0] will always be null. If there is any alternative,
then please suggest one */
if (window.addEventListener){
window.addEventListener('load', attachFormSubmit, false);
} else if (window.attachEvent){
window.attachEvent('onload', attachFormSubmit );
}
function attachFormSubmit(){
forms = document.getElementsByTagName('Form');
if ( forms[0] ){ // there is only one form in all pages
if (forms[0].addEventListener){
forms[0].addEventListener('submit', disablePage, false);
} else if (forms[0].attachEvent){
forms[0].attachEvent('onsubmit', disablePage);
}
}
}
function disablePage(){
document.getElementById("pageHideDivID").style.display='inline';
}
Till this point everything is fine, disablePage()
is attached to the forms of all page.
But the problem is, if someone have already attached any method to onSubmit
or onLoad
then that too should be executed. I guess according to my code that code will never be executed.
What should I do to chain their method too?
No JQuery please.
My application is having hundreds of pages. Now I have to attach an event disablePage
on onSubmit
of form. I don't want to go to each and every page and write:
<form name="frmname" onSubmit="disablePage();">
What I am doing right now is:-
excerpt from mon.js file; [ included in all pages ]
/* we have to attach 'attachFormSubmit' method on onLoad event,
otherwise forms[0] will always be null. If there is any alternative,
then please suggest one */
if (window.addEventListener){
window.addEventListener('load', attachFormSubmit, false);
} else if (window.attachEvent){
window.attachEvent('onload', attachFormSubmit );
}
function attachFormSubmit(){
forms = document.getElementsByTagName('Form');
if ( forms[0] ){ // there is only one form in all pages
if (forms[0].addEventListener){
forms[0].addEventListener('submit', disablePage, false);
} else if (forms[0].attachEvent){
forms[0].attachEvent('onsubmit', disablePage);
}
}
}
function disablePage(){
document.getElementById("pageHideDivID").style.display='inline';
}
Till this point everything is fine, disablePage()
is attached to the forms of all page.
But the problem is, if someone have already attached any method to onSubmit
or onLoad
then that too should be executed. I guess according to my code that code will never be executed.
What should I do to chain their method too?
No JQuery please.
Share Improve this question edited Feb 21, 2022 at 7:09 Brian Tompsett - 汤莱恩 5,89372 gold badges61 silver badges133 bronze badges asked Oct 23, 2009 at 14:13 Rakesh JuyalRakesh Juyal 36.8k74 gold badges178 silver badges217 bronze badges2 Answers
Reset to default 5According to Quirksmode what you are doing should actually work. It should just add your events and not replace the old ones. That's why you use addEventListener/attachEvent instead of assignment to onsubmit.
Note, that while the accepted answer is correct (the event handler is added, it does NOT replace the existing event handler), it might be not what the user expects:
Your event handler may be called in any order with the other event handlers. And onsubmit handlers may cancel the submission to the server. So, if you "disable" the page upon submit, you might leave the user on a page where he cannot do anything any more...
本文标签:
版权声明:本文标题:javascript - How to attach an event to onSubmit event of form with chaining earlier attached methods as well? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743862656a2552026.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论