我有这个样本:
https://codepen.io/anon/pen/BqgZdr
代码HTML:
<button id="btn">OPEN INPUT</button>
<input id="search" type="text" name="q" value="" placeholder="Demo search" class="input-text">
代码CSS:
#search{
display:none;
}
CODE jQuery:
jQuery("#btn").on('click', function(){
jQuery('#search').show();
jQuery('#search').trigger('click');
});
请在您的手机上打开此示例。
我想要的是在用户单击按钮时打开android键盘。
此示例在Iphone和Android上均应适用。
我试图模拟对搜索输入的点击,但似乎不起作用...请您能帮我解决这个问题吗?
更新:
我刚刚更改了初始示例以尝试一种新方法,但是它似乎也不起作用。
代码HTML:
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h2>Modal Example</h2>
<!-- Trigger the modal with a button -->
<button type="button" class="btn btn-info btn-lg" data-toggle="modal" data-target="#myModal">Open Modal</button>
<!-- Modal -->
<div class="modal fade" id="myModal" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Modal Header</h4>
</div>
<div class="modal-body">
<input id="search" type="text" name="q" value="" placeholder="Demo search" class="input-text">
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
CODE JS:
jQuery("button").on('click', function(){
jQuery('#search').focus();
});
答案 0 :(得分:0)
只要文本输入字段处于焦点位置,Android就会拉起键盘。
尝试这样:
jQuery('#search').focus();