当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


jQuery Mobile Listview refresh()用法及代码示例


jQuery Mobile 是一组基于 HTML5 的用户交互小部件工具箱,用于构建在 jQuery 之上的各种用途。它旨在构建可通过移动设备、选项卡和桌面访问的快速响应的网站。 jQuery Listview 是一个用于创建漂亮列表的小部件。它是一个简单且响应式的列表视图,用于查看无序列表。

在本文中,我们将使用 jQuery Mobilerefresh()用于更新列表项 UI 的方法DOM(文档对象模型)页面加载后修改。该列表可以在客户端使用 JavaScript 进行修改。

用法: refresh()方法不带任何参数,调用时,Listview 会更新 UI。

function refresh() {
    $(".items").listview("refresh");
}

CDN 链接:将以下 CDN 用于 jQuery Mobile。

<link rel=”stylesheet” href=”https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css” />
<script src=”https://code.jquery.com/jquery-1.11.1.min.js”></script>
<script src=”https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js”></script>

例子:在此示例中,有一个包含一些项目的预填充列表。接下来,有两个输入部分和“Click to add”这将添加一个新的列表项。这刷新刷新 ListView UI 的按钮。

HTML


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible"
          content="IE=edge" />
    <meta name="viewport"
          content="width=device-width, initial-scale=1.0" />
    <title>jQuery Mobile Listview</title>
    <link rel="stylesheet"
          href=
"https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
    <script src=
"https://code.jquery.com/jquery-1.11.1.min.js">
    </script>
    <script src=
"https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js">
    </script>
</head>
<body>
    <center>
    <h1>Geeksforgeeks</h1>
    <strong>jQuery Mobile Listview refresh() Method</strong>
    </center>
    <ul class="items" data-role="listview">
        <li>
            <a href=
"https://www.geeksforgeeks.org/data-structures"
            target="_blank">
            Data Structures
            </a>
        </li>
        <li>
            <a href=
"https://www.geeksforgeeks.org/courses/complete-interview-preparation"
            target="_blank">
            Interview preparation
            </a>
        </li>
        <li>
            <a href=
"https://www.geeksforgeeks.org/java"
            target="_blank">
            Java Programming
            </a>
        </li>
    </ul>
    <div style="padding: 30px;">
        <label for="name">Name</label>
        <input type="text" name="name" id="name">
        <label for="link">Link</label>
        <input type="text" name="link" id="link">
        <button onclick="addItem()">Click to add</button>
    </div>
    <button onclick="refresh()"
            style="background-color:green;">
        Refresh</button>
    <script>
        $(".items").listview({
            icon: "arrow-r",
        });
        function addItem() {
            var item = "<li>" +
                "<a href=\"" + $("#link").val() + "\" target=\"_blank\">" +
                $("#name").val() +
                "</a>" +
                "</li>"
            $(".items").append(item);
            $("#link").val("");
            $("#name").val("");
        }
        function refresh() {
            $(".items").listview("refresh");
        }
    </script>
</body>
</html>

输出:



相关用法


注:本文由纯净天空筛选整理自manavsarkar07大神的英文原创作品 jQuery Mobile Listview refresh() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。