提交前如何检查?
我需要在执行提交之前检查用户是否单击了按钮。
现在, 我正在使用 $(document).ready(function(){
,我想在其中放入代码来检查按钮是否被按下。
这个“按钮”只是一个简单的 < code>div,带有背景图像,如果您单击那里,则会更改图像。 所以我需要添加一个变量,以便我可以做出 if 语句,对吧?
我知道JQ中有preventDefault函数,但尝试使用它没有成功。
谢谢你的帮助
I need to check if the user clicked on a button before I preform the submit.
Right now,
I am using $(document).ready(function(){
and I want to put in it, the code to check if the button was pressed or not.
This "button" its just a simple div
, with background image that changes the image if you click there.
So I need to add a variable so I can make an if statement, right?
I know there is preventDefault function in JQ, but tried with no success to work with it.
thanks for help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这能回答你的问题吗?
我在“按钮 div”上添加了一个单击处理程序。单击它时,它会提交表单。
所以你的表单中不必有提交按钮,只需你的 div 按钮
Does this answer your question ?
I have added a click handler on the "button div". When it is clicked it submits the form.
So you don't have to have a submit button in your form, just your div button
您可以根据需要添加任意数量的提交事件。如果一个或多个提交事件返回 false,则不会提交表单;
You can add as much submit events as you want. The form will not be submitted if one or more submit events return false;
添加另一个输入元素来存储按钮是否被单击
,并为 div 设置事件处理程序。
在 div 内添加 input 元素可以使代码执行速度更快,因为它只需在 div 元素下搜索而不是整个 DOM。如果您想将输入元素放在外面,那么您也可以通过使用
表单提交来优化您的代码,您可以通过以下方式进行检查
Add another input element which stores whether the button is clicked
and set the event handler for the div.
Adding the input element inside the div makes the code execute faster since it just has to search only under the div element and not the entire DOM. If you want to place the input element outside, then too you could make your code optimized by using
on form submission you could check this by