注册 登录 充值会员 退出
毕业设计 PHP源码
充值

jQuery分步流程插件

作者/代码整理:  (转载请附加本文地址,带有“懒人原生”字样的谢绝转载) 发布日期:2018-01-30
jQuery分步流程插件
这是一款非常简单的jQuery分步流程插件,适用于商城购物步骤流程显示,支持自定义当前步骤样式。


js代码

<script src="js/step.js"></script>
<script>

  $(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)
  }

</script>