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>