Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您好,我正忙于使用 javascript 设置表单验证。我想知道是否有人知道如何使用 window.onload 函数来分配验证回调函数。javascript 需要在它自己的文件中。
只需像这样在 onload 函数体中分配您的验证回调
yourform.onsubmit=function(){ return your_validation_func(); }