1
所以,我有這個片段的HTML:HTML文本輸入不顯示iPad的鍵盤
<input id= "email" type= "text" name= "email"/>
和CSS的這個對應的摘錄:
input[type="text"]
{
/* Padding */
padding: 5px;
margin: 10px;
/* Sizes */
width: 100%;
/* Rounded Corners */
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
/* Decoration */
border: none;
outline: none;
/* Shadows */
-moz-box-shadow: inset 0 1px 1px rgba(74, 74, 74, 0.8);
-webkit-box-shadow: inset 0 1px 1px rgba(74, 74, 74, 0.8);
box-shadow: inset 0 1px 1px rgba(74, 74, 74, 0.8);
}
當我輸入元素上挖掘,沒有任何反應。 iPad中沒有顯示鍵盤。
編輯:本網站使用jQuery,jQuery UI和jQuery UI Touch。
在模擬器中試過這個URL http://jsfiddle.net/ZcycL/ - 工作得很好 –
你把整個表單包裝在一個帶有所有必需屬性的'
如果在沒有CSS設置的情況下測試會怎樣? –