アプリに検索機能を実装する必要があります (メモ帳コントロール F と同じです)。データのグループがあり、それが存在するかどうかを検索する必要があります。データはリスト ビューにありません。それから任意の作品を検索します。これは可能ですか? やり方を教えてください。例を挙げてください。
user2484319
質問する
450 次
1 に答える
2
多分あなたはwindow.find(aString, aCaseSensitive, aBackwards, aWrapAround, aWholeWord, aSearchInFrames, aShowDialog)
- aString: 検索するテキスト文字列。
- aCaseSensitive: ブール値。true の場合、大文字と小文字を区別する検索を指定します。
- aBackwards: ブール値。true の場合、後方検索を指定します。
- aWrapAround: ブール値。true の場合、ラップ アラウンド検索を指定します。
- aWholeWord: ブール値。true の場合、単語全体の検索を指定します。
- aSearchInFrames: ブール値。true の場合、フレームでの検索を指定します。
- aShowDialog :ブール値。true の場合、show Dialog を指定します。
例:
<!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>
于 2013-06-22T12:21:17.943 に答える