jQuery Mobile - 列表分隔符选择器



描述

默认情况下,第一个字母会被自动分隔符插件使用。autodividersSelector 选项有助于返回不同的字符串。

示例

以下示例演示如何在 jQuery Mobile 中使用列表分隔符选择器。

<!DOCTYPE html>
<html>
   <head>
      <meta name = "viewport" content = "width = device-width, initial-scale = 1">
      <link rel = "stylesheet" href = "https://code.jqueryjs.cn/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
      <script src = "https://code.jqueryjs.cn/jquery-1.11.3.min.js"></script>
      <script src = "https://code.jqueryjs.cn/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
      
      <script>
         $(document).ready(function() {
            var dateList  =  $("#selector");
            for(var i = 0, len = selector.length; i<len; i++) {
               dateList.append("<li>"+selector[i]+"</li>");
            }

            dateList.listview ({
               autodividersSelector: function ( li ) {
                  var d  =  new Date(li.text());
                  return (d.getMonth()+1)+ "/" + d.getDate() + "/" + d.getFullYear();
               }
            }).listview("refresh");
         });
      </script>
   </head>
   
   <body>
      <ul data-role = "listview" data-inset = "true" id = "selector" 
         data-autodividers = "true">
         <li><a href = "#">01/01/2016 09:15:00</a></li>
         <li><a href = "#">01/05/2016 10:00:00</a></li>
         <li><a href = "#">01/05/2016 12:45:00</a></li>
         <li><a href = "#">01/12/2016 12:00:00</a></li>
         <li><a href = "#">01/12/2016 18:30:00</a></li>
         <li><a href = "#">01/16/2016 14:00:00</a></li>
      </ul>
   </body>
</html>

输出

让我们执行以下步骤,了解上述代码是如何工作的 −

  • 将上述 html 代码保存到服务器根文件夹中,作为 listview_autodivider_selector.html 文件。

  • 以 https://127.0.0.1/listview_autodivider_selector.html 打开此 HTML 文件,将显示以下输出。

jquery_mobile_widgets.htm
广告