我尝试在干净的页面中运行基本示例。默认情况下,我的内容框位于右侧而不是步骤按钮下方:
这是代码:
<html>
<head>
<title>Demo</title>
<script src="Scripts/jquery-1.10.2.js"></script>
<script src="Scripts/jquery.steps.js"></script>
<link href="Content/jquery.steps.css" rel="stylesheet" />
</head>
<body>
<div id="wizard">
<h1>First Step</h1>
<div>First Content</div>
<h1>Second Step</h1>
<div>Second Content</div>
</div>
<script>
$("#wizard").steps();
</script>
</body>
</html>
在外部内容 div 上设置了一个溢出,但是当我遇到一个非常简单的向导时,我很犹豫是否要深入研究这个问题。我希望文档中缺少一个必需的容器。