jQuery – 有没有更简单的方法来写这个?

前端之家收集整理的这篇文章主要介绍了jQuery – 有没有更简单的方法来写这个?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是一个新的程序员,如果这个业余爱好者如此迷茫……我正在寻找一些方向,或者也许是一些想法.我这里的目标是让我学习,所以任何正确方向的推动都会得到应用.

好吧..我挑战自己使用jQuery为简单的注册表单创建一个类似控件的“向导”.我可以很好地完成这些步骤,但是我正在查看我的代码而且我不能帮助但是想一想; “必须有一种更好,更容易和更恰当的方式来做到这一点”.这就是我所拥有的.

  1. function toggleStep(){
  2. $("#nextButton").click(function(){
  3. if($("#nextButton").name = "step1"){
  4. $("#nextButton").attr("name","step2");
  5.  
  6. $("#backButton").attr("name","step1").css("display","inline");
  7.  
  8. $("#step1").hide();
  9. $("#step2").show("fade",250);
  10. }
  11. $("#nextButton").click(function(){
  12. if($("#nextButton").name = "step2"){
  13. $("#nextButton").attr("name","step3");
  14.  
  15. $("#backButton").attr("name","step2");
  16.  
  17. $("#step2").hide();
  18. $("#step3").show("fade",250);
  19. }
  20. $("#nextButton").click(function(){
  21. if($("#nextButton").name = "step3"){
  22. $("#nextButton").attr("name","step4");
  23. $("#nextButton").css("display","none");
  24.  
  25. $("#backButton").attr("name","step3");
  26.  
  27. $("#step3").hide();
  28. $("#step4").show("fade",250);
  29. }
  30. });
  31. });
  32. });
  33. }

此外,我似乎在创建“后退按钮”功能时搞砸了自己.这段代码根本不够好.你会怎么做?谢谢!!!

解决方法

我编辑了@Boaz代码,现在 you get干净了,我想这可以帮助你更好地理解.我还添加了一些评论.

jQuery代码变成了

  1. $('#next,#prev').click(function(){
  2. var t = $(this),current = $('#steps_container').find( '.step:visible' ),stepGo = ( t.attr( 'id' ) == 'next' ? current.next() : current.prev() );
  3.  
  4. if ( stepGo.length ) {
  5. current.fadeOut( 'slow',function(){
  6.  
  7. stepGo.fadeIn( 'slow' );
  8. });
  9. };
  10. return false;
  11. });

猜你在找的jQuery相关文章