Cordova 页脚问题中的滑块/范围控制

Cordova 页脚问题中的滑块/范围控制,cordova,phonegap-build,Cordova,Phonegap Build,将PhoneGap(Android)添加到jQM web应用程序时,应位于页脚中的jQM滑块控件将被删除,并按PhoneGap(?)放置在页脚的b4处。使用Adobe PhoneGap构建 <div data-role="footer" data-position="fixed" data-theme="d" data-id="nav"> <div data-role="navbar" id="mynav"> <ul> <li><input

将PhoneGap(Android)添加到jQM web应用程序时,应位于页脚中的jQM滑块控件将被删除,并按PhoneGap(?)放置在页脚的b4处。使用Adobe PhoneGap构建

<div data-role="footer" data-position="fixed" data-theme="d" data-id="nav">
<div data-role="navbar" id="mynav">
<ul>
<li><input type="range" name="dayslider" id="dayslider" value="180" min="1" max="365" data-highlight="true" /></li>
<li><input type="button" data-icon="check" data-iconpos="bottom" value="Animate" id="animate" onclick="animY()"></li>
</ul>
</div>
</div>


原因可能是什么?对于jQM页脚中的内容是否有任何限制(通过PhoneGap)

这应该行得通。我发现JQM,data position=“fixed”不适用于所有设备,并改为绝对CSS定位。但是,第二个输入中缺少“/”。这可能会引起问题

<input type="button" data-icon="check" data-iconpos="bottom" value="Animate" id="animate" onclick="animY()">

应该是:

<input type="button" data-icon="check" data-iconpos="bottom" value="Animate" id="animate" onclick="animY()"/>

谢谢。我添加了缺少的/但滑块仍在页脚之外。