在Selectmenu
上方点击多次时,我的光标显示在Selectmenu
上方?
这个代码
<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应用程序。 请问,任何人都遇到这个问题并找到解决方案告诉我解决方案? 此外,任何建议都会有所帮助吗?
答案 0 :(得分: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;
}