Jquery windows phone上的Html输入文本字段滚动问题

Jquery windows phone上的Html输入文本字段滚动问题,jquery,css,html,jquery-mobile,windows-phone-8,Jquery,Css,Html,Jquery Mobile,Windows Phone 8,我有适用于windows phone的phonegap应用程序。在该应用程序中,UI是用HTML创建的。但是文本字段中的水平滚动有一个问题。我想要像在任何本机windows phone应用程序中滚动文本一样滚动文本。 例如,windows mobile上IE浏览器中的地址栏文本字段可以滚动整个文本 这是我的密码: <div> <div style="width: 60%;float: left;margin-right: 1px;padding-left: 25px;"

我有适用于windows phone的phonegap应用程序。在该应用程序中,UI是用HTML创建的。但是文本字段中的水平滚动有一个问题。我想要像在任何本机windows phone应用程序中滚动文本一样滚动文本。 例如,windows mobile上IE浏览器中的地址栏文本字段可以滚动整个文本

这是我的密码:

<div> 
   <div style="width: 60%;float: left;margin-right: 1px;padding-left: 25px;">
       <input type="text" id="mobmake" placeholder="Mobile Make" style="background:#0B65B5;color:#FFF;margin-left: -6px;padding-left: 13px;"> 
   </div>
</div>
<br>
<div>
   <div style="width: 60%;float: left;padding-left: 25px;">
       <input type="text" id="mobmodel" placeholder="Mobile Model" style="background:#0B65B5;color:#FFF;margin-left: -6px;padding-left: 13px;">
   </div>
</div>



您能发布一些代码或其他您到目前为止所做的事情吗?它只有简单的html代码