EasyUI-Panel Footer


@{
    Layout = null;
}

<!DOCTYPE html>

<html>
<head>
    <meta name="viewport" content="width=device-width" />
    <title>Index</title>
    <script src="~/Scripts/jquery-3.3.1.min.js"></script>
    <script src="~/Scripts/jquery.easyui.min.js"></script>
    <script src="~/Scripts/easyui-lang-zh_CN.js"></script>
    <link href="~/Content/EasyUI/themes/icon.css" rel="stylesheet" />
    <link href="~/Content/EasyUI/themes/default/easyui.css" rel="stylesheet" />
   
</head>
<body>

    <h2>Panel Footer</h2>
    <p>The panel footer is displayed at the bottom of the panel and can consist of any other components.</p>
    <div style="margin:20px 0 10px 0;"></div>
    <div class="easyui-panel" title="Panel Footer" style="width:700px;height:200px;" data-options="footer:'#ft'">
    </div>
    <div id="ft" style="padding:5px;">
        Footer Content.
    </div>

</body>
</html>

猜你喜欢

转载自blog.csdn.net/dxm809/article/details/88680293