gpt4 book ai didi

jquery-mobile - 需要在 jquery mobile (phonegap) 中搜索或查找功能

转载 作者:行者123 更新时间:2023-12-02 02:00:53 25 4
gpt4 key购买 nike

我需要在我的应用程序中实现搜索功能(与记事本控件 F 相同)。我有一组数据,我需要搜索它是否存在于 not 上。数据不在 ListView 中。就像我们写一些东西一样在记事本中,然后我们搜索任何作品。这可能吗?你能告诉我该怎么做吗?请提供一些例子。

最佳答案

也许您可以使用 window.find(aString, aCaseSensitive, aBackwards, aWrapAround, aWholeWord, aSearchInFrames, aShowDialog)

  • aString:要搜索的文本字符串。
  • aCaseSensitive: bool 值。如果为真,则指定区分大小写的搜索。
  • aBackwards: bool 值。如果为真,则指定向后搜索。
  • aWrapAround: bool 值。如果为真,则指定环绕搜索。
  • aWholeWord: bool 值。如果为真,则指定全词搜索。
  • aSearchInFrames: bool 值。如果为真,则指定以帧为单位进行搜索。
  • aShowDialog: bool 值。如果为真,则指定显示对话框。


示例:

<!DOCTYPE html>
<html>

<head>
<title>jQuery Mobile Nested List</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" />
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
<script type="text/javascript">
function findText (str)
{
if (str === "") {
alert ("Please enter some text to search!");
return;
}

if (window.find) {
window.find (str, false, false, true, false, true, false);
}
}

$(document).on('click', '#search', function () {
findText("blah");
});
</script>
</head>

<body>
<div id="list-page" data-role="page">
<div data-role="header">
<h1>Find Page</h1>

</div>
<div data-role="content">
<label for="search-field">Text Input:</label>
<p> blah this is a test blah this is a test blah</p>
<input type="button" name="search" id="search" value="Search"/>
</div>
</div>
</body>

</html>

关于jquery-mobile - 需要在 jquery mobile (phonegap) 中搜索或查找功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17250288/

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