Home >Web Front-end >JS Tutorial >Source code sharing based on jquery step progress bar_jquery

Source code sharing based on jquery step progress bar_jquery

WBOY
WBOYOriginal
2016-05-16 15:32:491601browse

Based on the jQuery web step process progress bar code, the code contains two jQuery step progress bar effects with different effects. The rendering is as follows:


Online preview Source code download

html code:

<div class="step_context test"></div>
当前步骤:
第<input type="text" value="5" id="currentStepVal" />步 <button onclick="StepTool.drawStep(jQuery('#currentStepVal').val(),stepListJson);" type="button">重新生成</button>
<script type="text/javascript">
  //所有步骤的数据
  var stepListJson = [{ StepNum: 1, StepText: "第一步" },
  { StepNum: 2, StepText: "第二步" },
  { StepNum: 3, StepText: "第三步" },
  { StepNum: 4, StepText: "第四步" },
  { StepNum: 5, StepText: "第五步" },
  { StepNum: 6, StepText: "第六步" },
  { StepNum: 7, StepText: "第七步" }];
  //当前进行到第几步
  var currentStep = 5;
  //new一个工具类
  var StepTool = new Step_Tool_dc("test", "mycall");
  //使用工具对页面绘制相关流程步骤图形显示
  StepTool.drawStep(currentStep, stepListJson);
  //回调函数
  function mycall(restult) {
    // alert("mycall"+result.value+":"+result.text);
    StepTool.drawStep(result.value, stepListJson);
    //TODO...这里可以填充点击步骤的后加载相对应数据的代码
  }
</script>

The above code is the jquery step progress bar source code shared by the editor. I hope you like it.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn