登录 注册
当前位置:主页 > 资源下载 > 15 > H5 jQuery分步流程插件.zip下载

H5 jQuery分步流程插件.zip下载

  • 更新:2024-08-04 08:24:08
  • 大小:36KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

代码片段: $(function () { initStep();   });   function initStep() { $(".steps").step({  stepNames: ['购买', '付款', '发货', '收货', '评价', '完成'],  initStep: 3 })   }   function previousStep() { $(".steps").step("previous");   }   function nextStep() { $(".steps").step("next");   }   function gotoStep(step) { $(".steps").step("goto", step)   }