表单中是否允许使用多个 onsubmit javascript 函数?
表单中是否允许使用多个 onsubmit 函数? 例子:
<form name="form" method="POST" action="contactus.asp" onsubmit="return verify()"
<!--*****CAN I ADD ANOTHER onsubmit FUNCTION HERE?***** -->>
Are multiple onsubmit functions allowed in forms?
Example:
<form name="form" method="POST" action="contactus.asp" onsubmit="return verify()"
<!--*****CAN I ADD ANOTHER onsubmit FUNCTION HERE?***** -->>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
那么,您可以添加任何合法的 JavaScript 语句,包括 this:
或 this
或更复杂的表达式,其中可以包含多个函数调用。请注意,适用标准评估规则,包括逻辑表达式的短路评估。
Well, you can add any legal JavaScript statement including this:
or this
or more complex expressions which can include multiple function calls. Note that standard evaluation rules apply including short-circuit evaluation of logical expressions.
我相信那是行不通的。您应该只创建一个包装函数,并在其中包含您想要执行的函数。
I believe that wouldn't work. You should just make a wrapper function, and include the functions which you desire to execute, inside of that.