1 Star 7 Fork 1

(。・ω・。)     /layui 步骤条 - steps

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.html 993 Bytes
一键复制 编辑 原始数据 按行查看 历史
(。・ω・。)      提交于 2020-01-06 13:51 . 1
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Layui 步骤条steps</title>
<link rel="stylesheet" href="./layui/css/layui.css">
</head>
<body>
<div id="steps"></div><br>
<button class="layui-btn layui-btn-normal" onclick="nextStep()">下一步</button>
<script src="./layui/layui.js"></script>
<script>
layui.extend({
steps: './layui/extends/steps/steps'
});
layui.use('steps', function () {
var steps = layui.steps;
steps.render({
ele: '#steps',
data: [
{'title': "第一步", "desc": "我是详情"},
{'title': "第二步", "desc": "我是详情"},
{'title': "第三步", "desc": "我是详情"},
{'title': "第四步", "desc": "我是详情"}
], //desc 不是必须
//current: 2 //默认为第几步
});
});
function nextStep() {
layui.steps.next();
}
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/zhx_zhx/layui_step_bar_steps.git
git@gitee.com:zhx_zhx/layui_step_bar_steps.git
zhx_zhx
layui_step_bar_steps
layui 步骤条 - steps
master

搜索帮助