gpt4 book ai didi

android - 将焦点设置到输入框并在 pageshow 上使用 jquery mobile 显示 android 键盘

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:12:06 26 4
gpt4 key购买 nike

我正在尝试将焦点设置到输入框并在 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>

查找屏幕截图以供引用

enter image description here

enter image description here

请指教...提前致谢...

注意:

根据 Omar 的评论,它在 ios 中运行良好....任何人都可以建议我们如何在 android 中完成这项工作?

最佳答案

对我有用的解决方案:

$("#main").on("pageshow" , function() {
$('#gotoPage').focus();
});

关于android - 将焦点设置到输入框并在 pageshow 上使用 jquery mobile 显示 android 键盘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16916229/

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