gpt4 book ai didi

javascript - Jquery Mobile - 单击弹出窗口(标题和内容的任何区域)自动聚焦文本字段

转载 作者:行者123 更新时间:2023-12-03 04:15:58 25 4
gpt4 key购买 nike

单击弹出窗口的任何部分(按钮除外)会触发文本字段上的焦点并出现键盘。我希望文本字段在单击时获得焦点。有什么办法可以解决这个问题吗?

<div id="datasetPopup" data-role="popup" data-history="false" class="popupDialog" data-theme="b" data-dismissible='false'>
<div data-role="header" data-theme="b" class="popupHeader">
<h1><strong id="popupHeader"></strong></h1>
</div>
<div data-role="content" class="popupContent">
<input type="text" id="searchText"/>
<ul data-role="listview">
/* lists */
</ul>
</div>
<div class="footerFullButton">
<button type="button" id="cancelButton">Cancel</button>
</div>
</div>

最佳答案

这是设计使然,但您可以采用“技巧”来添加位于弹出窗口外部的另一个输入元素,然后焦点转到整个弹出窗口,这看起来也不错:

.ui-popup {
padding: 1em;
min-width: 200px;
}

.hidden {
position:absolute;
top:-100px;
width:1px;
height:1px;
overflow:hidden;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.css">
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
<script type="text/javascript">
$(document).on('mobileinit', function() {
$.mobile.ignoreContentEnabled = true;
});
</script>
<script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
<body>
<div data-role="page" id="page-one">
<div data-role="header" data-position="fixed">
<h3>Page</h3>
</div>
<div data-role="content">
<a href="#popup" data-rel="popup" class="ui-btn">Popup</a>
</div>
<div data-role="footer" data-position="fixed">
<h3>Footer</h3>
</div>
<div id="popup" data-role="popup" data-history="false" data-dismissible='false'>
<input data-enhanced="true" type="button" class="hidden">
<input type="text" id="usr" name="usr" value="">
<a href="#" class="ui-btn" data-rel="back">Cancel</a>
</div>
</div>
</body>
</html>

您还应该告诉 JQM 不要在弹出窗口内重新定位此移位的元素。这就是使用 $.mobile.ignoreContentEnabled = true; 初始化行的原因。

关于javascript - Jquery Mobile - 单击弹出窗口(标题和内容的任何区域)自动聚焦文本字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44133535/

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