2013-01-02 50 views
0

当点击这个Selectmenu上面的许多次时,我的光标显示在Selectmenu以上?如何删除显示在选择菜单上的光标?

enter image description here

这部分代码

<center> 
     <table width="100%"> 
      <tr> 
       <td style="width: 30%;"> 
        <label for="Column1" class="select PSettinglabel"> 
         Column 1</label> 
       </td> 
       <td style="width: 70%;"> 
        <div class="dropdowncssclass" > 
         <select name="Column1" id="Column1" data-native-menu="true"> 
          <option value="SymbolName">Symbole Name</option> 
          <option value="SymbolID">Symbole ID</option> 
          <option value="Symbol">Symbole ID & Name</option> 
         </select> 
        </div> 
       </td> 
      </tr> 
     </table> 
<center> 

这是iOS的下PhoneGap的应用。 请问,任何人遇到这个问题,并找到解决方案告诉我有关解决方案? 此外,任何建议会有帮助吗?

回答

2

我不认为这是一个游标。 jQuery Mobile样式或选择框没有内部元素能够显示闪烁的光标。

我认为你的选择框样式的实现有问题,而“光标”只是一个跨度选择。

如果我是正确的这个CSS应该可以帮助您:

* { 
    -webkit-touch-callout: none; 
    -webkit-user-select: none; 
    -khtml-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none; 
    user-select: none; 
} 
相关问题