我正在寻找一个应用程序表单的前端,它将作为一个多步骤向导显示和导航。
我已经使用 jQuery Mobile 1.4.0 构建了一个单一的垂直 HTML 页面,并且效果非常好。
然后我添加了 jQuery Steps 1.0.4 以集成向导方面并保持了大部分的外观。不幸的是,大多数表单字段的 jQuery Mobile 功能已经停止工作。例如滑块不拖动,文本框不突出显示。没有 JS 错误,并且这些字段最初显示正确,只是没有表现出应有的行为。
我想知道是否有人以前使用过这两个库,找到了解决方法,或者对如何集成这两个库有任何建议。
<body>
<div id="main">
<form id="" action="landing.html">
<div id="wizard">
<h1>Step 2 - Heading</h1>
<div id="step_2">
<section>
<fieldset data-role="controlgroup" data-type="horizontal">
<legend>Radio Options</legend>
<input type="radio" name="radio-choice-1" id="radio-choice-1" value="choice-1" />
<label for="radio-choice-1">Option 1</label>
<input type="radio" name="radio-choice-1" id="radio-choice-2" value="choice-2" />
<label for="radio-choice-2">Option 2</label>
<input type="radio" name="radio-choice-1" id="radio-choice-3" value="choice-3" />
<label for="radio-choice-3">Option 3</label>
</fieldset>
</section>
</div>
</div>
</form>
</div>
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="http://code.jquery.com/ui/1.10.4/jquery-ui.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.0/jquery.mobile-1.4.0.min.js" type="text/javascript"></script>
<script src="scripts/libs/jquery.steps-1.0.4.js"></script>
<script src="scripts/initiate.wizard.js"></script>