我正在尝试将焦点设置到输入框并在pageshow上使用jquery mobile显示android键盘。
我在网上尝试了很多选项。但是没有一个在模拟器和移动设备中按预期工作。
以下是代码:
<!DOCTYPE html>
<html>
<head>
<title>Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
</head>
<body>
<div data-role="page" id="main">
<div data-role="header"><h3>Set Focus, Show Keyboard</h3></div>
<div data-role="content">
<label for="gotoPage"></label>
<input type="text" name="gotoPage" id="gotoPage" placeholder="Question No." data-mini="true" />
</div>
</div>
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script>
$(document).on('pageinit',"[data-role=page]", function() {
});
$(document).on('pagebeforeshow',"[data-role=page]", function() {
});
$(document).on('pageshow',"[data-role=page]", function() {
$('#gotoPage').focus().select();
});
</script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</body>
</html>
查找屏幕截图供参考
请建议......提前致谢...
注意:
根据奥马尔的评论,它在ios中运行良好.... 任何人都可以建议我们如何在Android中工作?
答案 0 :(得分:3)
适合我的解决方案:
$("#main").on("pageshow" , function() {
$('#gotoPage').focus();
});