gpt4 book ai didi

HTML 文本输入不显示 iPad 键盘

转载 作者:行者123 更新时间:2023-11-28 18:43:35 25 4
gpt4 key购买 nike

所以,我有这段 HTML:

<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。

最佳答案

原来是这个问题:

http://code.google.com/p/jquery-ui-for-ipad-and-iphone/issues/detail?id=17

在 jQuery UI Touch 中,在函数中

function iPadTouchHandler(event) {

在开关/外壳中

    switch (event.type) {
case "touchstart":

改变

            if ($(event.changedTouches[0].target).is("select")) {

            if ($(event.changedTouches[0].target).is("select") || $(event.changedTouches[0].target).is("input")) {

修复错误。

关于HTML 文本输入不显示 iPad 键盘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10986971/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com