触发 jquery btn 1,2,3,4 -
我正在尝试在 jQuery 中创建一个函数,每次单击都会触发不同的函数。 (在同一个按钮上)- 但最多 4 次不同的点击。
第一次点击:功能1 第二次点击:功能2 第三次点击:功能 3 第四次最后单击:功能 4
用于图像旋转。 (我尝试过开始做某事) http://pastie.textmate.org/private/uacbnix2fjovtocks5lehq
I'm trying to make a function in jQuery that triggers different functions on each click. (on the same button) - But max 4 different clicks.
First click: function 1
Second click: function 2
Third click: function 3
Four and last click: function 4
It's for an image rotation. (I have tried to start something)
http://pastie.textmate.org/private/uacbnix2fjovtocks5lehq
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
似乎
.toggle()
是你想要的:您可以使用它:
或者提供替代实现:
It seems
.toggle()
is what you want:which you would use like:
Or to give an alternative implementation:
如果我正确理解你的问题。这应该是答案。
if i understand your question correctly . this should be the answer .