85

我有一个像这样的简单输入字段。

<div class="search">
   <input type="text" value="y u no work"/>
</div>​

我正在尝试focus()在一个函数中使用它。所以在一个随机函数内部(不管它是什么函数)我有这条线......</p>

$('.search').find('input').focus();

这在每个桌面上都可以正常工作。

但是它不适用于我的 iPhone。该字段没有获得焦点,并且我的 iPhone 上没有显示键盘。

出于测试目的并向大家展示问题,我做了一个快速示例:

$('#some-test-element').click(function() {
  $('.search').find('input').focus(); // works well on my iPhone - Keyboard slides in
});

setTimeout(function() {
  //alert('test'); //works
  $('.search').find('input').focus(); // doesn't work on my iPhone - works on Desktop
}, 5000);​

知道为什么focus()不能在我的 iPhone 上使用超时功能。

要查看实时示例,请在您的 iPhone 上测试这个小提琴。http://jsfiddle.net/Hc4sT/

更新:

我创建了与我目前在当前项目中面临的完全相同的案例。

我有一个选择框,当“更改”时,它应该将焦点设置到输入字段并滑入 iphone 或其他移动设备上的 kexboard。我发现 focus() 设置正确,但键盘没有出现。我需要键盘出现。

4

9 回答 9

83

其实各位,有办法的。我为 [LINK REMOVED](在 iPhone 或 iPad 上试一试)而费了很大力气才弄清楚这一点。

基本上,触摸屏设备上的 Safari 在focus()处理文本框时是很吝啬的。如果您这样做,即使是某些桌面浏览器也会做得更好click().focus()。但是触摸屏设备上的 Safari 的设计者意识到当键盘不断出现时会让用户感到烦恼,所以他们只在以下情况下才出现焦点:

1) 用户点击某处并focus()在执行点击事件时被调用。如果您正在执行 AJAX 调用,那么您必须同步执行,例如使用$.ajax({async:false})jQuery 中已弃用(但仍然可用)的选项。

2)此外——这个让我忙了一阵子——focus()如果当时有其他文本框关注,它似乎仍然不起作用。我有一个执行 AJAX 的“Go”按钮,所以我尝试touchstart在 Go 按钮的事件上模糊文本框,但这只是让键盘消失并在我有机会完成单击 Go 按钮之前移动视口. 最后我尝试在 Go 按钮的事件上模糊文本框touchend,这就像一个魅力!

当您将 #1 和 #2 放在一起时,您会得到一个神奇的结果,它将您的登录表单与所有糟糕的 Web 登录表单区分开来,通过将焦点放在您的密码字段上,让它们感觉更原生。享受!:)

于 2013-05-17T04:14:23.273 回答
32

WunderBart 答案的原生 javascript 实现。

function onClick() {

  // create invisible dummy input to receive the focus first
  const fakeInput = document.createElement('input')
  fakeInput.setAttribute('type', 'text')
  fakeInput.style.position = 'absolute'
  fakeInput.style.opacity = 0
  fakeInput.style.height = 0
  fakeInput.style.fontSize = '16px' // disable auto zoom

  // you may need to append to another element depending on the browser's auto 
  // zoom/scroll behavior
  document.body.prepend(fakeInput)

  // focus so that subsequent async focus will work
  fakeInput.focus()

  setTimeout(() => {

    // now we can focus on the target input
    targetInput.focus()

    // cleanup
    fakeInput.remove()
    
  }, 1000)

}

其他参考:禁用输入“文本”标签中的自动缩放 - iPhone 上的 Safari

于 2019-04-12T13:16:20.397 回答
6

我最近遇到了同样的问题。我找到了一个显然适用于所有设备的解决方案。您不能以编程方式进行异步焦点,但是当其他一些输入已经获得焦点时,您可以将焦点切换到目标输入。因此,您需要做的是创建、隐藏、附加到 DOM 并将输入聚焦在触发事件上,并且当异步操作完成时,只需再次在目标输入上调用焦点。这是一个示例片段 - 在您的手机上运行它。

编辑:

这是一个使用相同代码的小提琴。显然你不能在手机上运行附加的片段(或者我做错了什么)。

var $triggerCheckbox = $("#trigger-checkbox");
var $targetInput = $("#target-input");

// Create fake & invisible input
var $fakeInput = $("<input type='text' />")
  .css({
    position: "absolute",
    width: $targetInput.outerWidth(), // zoom properly (iOS)
    height: 0, // hide cursor (font-size: 0 will zoom to quarks level) (iOS)
    opacity: 0, // make input transparent :]
  });

var delay = 2000; // That's crazy long, but good as an example

$triggerCheckbox.on("change", function(event) {
  // Disable input when unchecking trigger checkbox (presentational purpose)
  if (!event.target.checked) {
    return $targetInput
      .attr("disabled", true)
      .attr("placeholder", "I'm disabled");
  }

  // Prepend to target input container and focus fake input
  $fakeInput.prependTo("#container").focus();

  // Update placeholder (presentational purpose)
  $targetInput.attr("placeholder", "Wait for it...");

  // setTimeout, fetch or any async action will work
  setTimeout(function() {

    // Shift focus to target input
    $targetInput
      .attr("disabled", false)
      .attr("placeholder", "I'm alive!")
      .focus();

    // Remove fake input - no need to keep it in DOM
    $fakeInput.remove();
  }, delay);
});
label {
  display: block;
  margin-top: 20px;
}

input {
  box-sizing: border-box;
  font-size: inherit;
}

#container {
  position: relative;
}

#target-input {
  width: 250px;
  padding: 10px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<div id="container">
  <input type="text" id="target-input" placeholder="I'm disabled" />

  <label>
    <input type="checkbox" id="trigger-checkbox" />
    focus with setTimetout
   </label>
</div>

于 2017-08-15T23:34:07.050 回答
3

我设法使它与以下代码一起工作:

event.preventDefault();
timeout(function () {
    $inputToFocus.focus();
}, 500);

我正在使用 AngularJS,所以我创建了一个指令来解决我的问题:

指示:

angular.module('directivesModule').directive('focusOnClear', [
    '$timeout',
    function (timeout) {
        return {
            restrict: 'A',
            link: function (scope, element, attrs) {
                var id = attrs.focusOnClear;
                var $inputSearchElement = $(element).parent().find('#' + id);
                element.on('click', function (event) {
                    event.preventDefault();
                    timeout(function () {
                        $inputSearchElement.focus();
                    }, 500);
                });
            }
        };
    }
]);

如何使用指令:

<div>
    <input type="search" id="search">
    <i class="icon-clear" ng-click="clearSearchTerm()" focus-on-clear="search"></i>
</div>

看起来您正在使用 jQuery,所以我不知道该指令是否有帮助。

于 2014-04-15T11:12:16.540 回答
3

我有一个带有图标的搜索表单,单击该图标会清除文本。但是,问题(在移动设备和平板电脑上)是键盘会折叠/隐藏,因为删除的click事件focus已从input.

带有关闭图标的文本搜索输入

目标:清除搜索表单后(单击/点击 x 图标)保持键盘可见

要做到这一点,stopPropagation()请像这样申请事件:

function clear ($event) {
    $event.preventDefault();
    $event.stopPropagation();
    self.query = '';
    $timeout(function () {
        document.getElementById('sidebar-search').focus();
    }, 1);
}

和 HTML 表单:

<form ng-controller="SearchController as search"
    ng-submit="search.submit($event)">
        <input type="search" id="sidebar-search" 
            ng-model="search.query">
                <span class="glyphicon glyphicon-remove-circle"
                    ng-click="search.clear($event)">
                </span>
</form>
于 2015-11-25T17:57:13.520 回答
3

这个解决方案效果很好,我在手机上测试过:

document.body.ontouchend = function() { document.querySelector('[name="name"]').focus(); };

请享用

于 2016-02-12T17:32:48.773 回答
1

更新

我也试过这个,但无济于事:

$(document).ready(function() {
$('body :not(.wr-dropdown)').bind("click", function(e) {
    $('.test').focus();
})
$('.wr-dropdown').on('change', function(e) {
    if ($(".wr-dropdow option[value='/search']")) {
        setTimeout(function(e) {
            $('body :not(.wr-dropdown)').trigger("click");
        },3000)         
    } 
}); 

});

我很困惑为什么你说这不起作用,因为你的 JSFiddle 工作得很好,但无论如何这是我的建议......

在单击事件的 SetTimeOut 函数中尝试这行代码:

document.myInput.focus();

myInput 与输入标签的名称属性相关。

<input name="myInput">

并使用此代码模糊该字段:

document.activeElement.blur();
于 2012-08-30T20:38:47.443 回答
1

尝试这个:

input.focus();
input.scrollIntoView()
于 2020-08-10T03:06:06.560 回答
-3

请尝试使用 on-tap 而不是 ng-click 事件。我有这个问题。我通过在搜索表单标签中创建清除搜索框按钮并通过点击替换清除按钮的 ng-click 来解决它。它现在工作正常。

于 2016-05-02T07:17:43.330 回答