「テンプレート:MyCustomWidget」の版間の差分

提供:ヘイグ - 総合ゲームメディア
移動先:案内検索
(ページの作成:「<script type="text/javascript"> $(document).ready(function() { $("#searchInput").on("keyup", function() { var value = $(this).val().toLowerCase(); $("#yourTableID tr").filter(function() { $(this).toggle($(this).text().toLowerCase().indexOf(value) > -1) }); }); }); </script>」)
(相違点なし)

2024年1月9日 (火) 22:49時点における版

<script type="text/javascript"> $(document).ready(function() {

 $("#searchInput").on("keyup", function() {
   var value = $(this).val().toLowerCase();
   $("#yourTableID tr").filter(function() {
     $(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)
   });
 });

}); </script>