资讯详情

第04章节-Python3.5-组件BootStrap、EasyUI、JQueryUI1用法 3

EasyUI用法:

  • 把EasyUI下载到本地,然后查看文档,找到您想要的样式,然后写入您的代码(建议查看源代码中的样式)demo文件里的源码)[但存在大量的Ajax操作
  • 打开
  • (http://www.jeasyui.net/)或(http://www.jeasyui.com/download/v155.php)下载jquery-easyui-1.5.5.4文件(点击download下载) 然后目录如下:
    image.png
    新建s2.html 代码如下:
<!DOCTYPE html> <html> <head>     <meta charset="UTF-8">     <title>Basic CRUD Application - jQuery EasyUI CRUD Demo</title>     <link rel="stylesheet" type="text/css" href="jquery-easyui-1.5.5.4/themes/default/easyui.css">     <link rel="stylesheet" type="text/css" href="jquery-easyui-1.5.5.4/themes/icon.css">     <link rel="stylesheet" type="text/css" href="jquery-easyui-1.5.5.4/themes/color.css">     <link rel="stylesheet" type="text/css" href="jquery-easyui-1.5.5.4/demo/demo.css">     <script type="text/javascript" src="jquery-easyui-1.5.5.4/jquery.min.js"></script>     <script type="text/javascript" src="jquery-easyui-1.5.5.4/jquery.easyui.min.js"></script> </head> <body>     <h2>Basic CRUD Application</h2>     <p>Click the buttons on datagrid toolbar to do crud actions.</p>      <table id="dg" title="My Users" class="easyui-datagrid" style="width:700px;height:250px"             url="get_users.php"             toolbar="#toolbar" pagination="true"             rownumbers="true" fitColumns="true" singleSelect="true">         <thead>             <tr>                 <th field="firstname" width="50">First Name</th>                 <th field="lastname" width="50">Last Name</th>                 <th field="phone" width="50">Phone</th>                 <th field="email" width="50">Email</th>             </tr>         </thead>     </table>     <div id="toolbar">         <a href="javascript:void(0)" class="easyui-linkbutton" iconCls="icon-add" plain="true" onclick="newUser()">New User</a>         <a href="javascript:void(0)" class="easyui-linkbutton" iconCls="icon-edit" plain="true" onclick="editUser()">Edit User</a>         <a href="javascript:void(0)" class="easyui-linkbutton" iconCls="icon-remove" plain="true" onclick="destroyUser()">Remove User</a>     </div>      <div id="dlg" class="easyui-dialog" style="width:400px" data-options="closed:true,modal:true,border:'thin',buttons:'#dlg-buttons'">         <form id="fm" method="post" novalidate style="margin:0;padding:20px 50px">             <h3>User Information</h3>             <div style="margin-bottom:10px">                 <input name="firstname" class="easyui-textbox" required="true" label="First Name:" style="width:100%">             </div>             <div style="margin-bottom:10px">                 <input name="lastname" class="easyui-textbox" required="true" label="Last Name:" style="width:100%">             </div>             <div style="margin-bottom:10px">                 <input name="phone" class="easyui-textbox" required="true" label="Phone:" style="width:100%">             </div>             <div style="margin-bottom:10px">                 <input name="email" class="easyui-textbox" required="true" validType="email" label="Email:" style="width:100%">             </div>         </form>     </div>     <div id="dlg-buttons">         <a href="javascript:void(0)" class="easyui-linkbutton c6" iconCls="icon-ok" onclick="saveUser()" style="width:90px">Save</a>         <a href="javascript:void(0)" class="easyui-linkbutton" iconCls="icon-cancel" onclick="javascript:$('#dlg').dialog('close')" style="width:90px">Cancel</a>     </div>     <script type="text/javascript">         var url;         function newUser(){             $('#dlg').dialog('open').dialog('center').dialog('setTitle','New User');             $('#fm').form('clear');             url = 'save_user.php';         }         function editUser(){             var row = $('#dg').datagrid('getSelected');             if (row){                 $('#dlg').dialog('open').dialog('center').dialog('setTitle','Edit User');                 $('#fm').form('load',row);                 url = 'update_user.php?id=' row.id;             }         }         function saveUser(){             $('#fm').form('submit',{                 url: url,                 onSubmi: function(){
                    return $(this).form('validate');
                },
                success: function(result){
                    var result = eval('('+result+')');
                    if (result.errorMsg){
                        $.messager.show({
                            title: 'Error',
                            msg: result.errorMsg
                        });
                    } else {
                        $('#dlg').dialog('close');        // close the dialog
                        $('#dg').datagrid('reload');    // reload the user data
                    }
                }
            });
        }
        function destroyUser(){
            var row = $('#dg').datagrid('getSelected');
            if (row){
                $.messager.confirm('Confirm','Are you sure you want to destroy this user?',function(r){
                    if (r){
                        $.post('destroy_user.php',{id:row.id},function(result){
                            if (result.success){
                                $('#dg').datagrid('reload');    // reload the user data
                            } else {
                                $.messager.show({    // show error message
                                    title: 'Error',
                                    msg: result.errorMsg
                                });
                            }
                        },'json');
                    }
                });
            }
        }
    </script>
</body>
</html>
  • s1.html的代码是从(http://www.jeasyui.com/demo/main/index.php)的网页中的Source Code复制的如图
    image.png
    把这块的代码如图
    image.png
    : 然后把上述那块的代码修改为如下图:
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Basic CRUD Application - jQuery EasyUI CRUD Demo</title>
    <link rel="stylesheet" type="text/css" href="jquery-easyui-1.5.5.4/themes/default/easyui.css">
    <link rel="stylesheet" type="text/css" href="jquery-easyui-1.5.5.4/themes/icon.css">
    <link rel="stylesheet" type="text/css" href="jquery-easyui-1.5.5.4/themes/color.css">
    <link rel="stylesheet" type="text/css" href="jquery-easyui-1.5.5.4/demo/demo.css">
    <script type="text/javascript" src="jquery-easyui-1.5.5.4/jquery.min.js"></script>
    <script type="text/javascript" src="jquery-easyui-1.5.5.4/jquery.easyui.min.js"></script>
</head>

打开s2.html效果图如下:

image.png

JQueryUI

JQueryUI用法(用法同上):

  • JQueryUI主要用于后台管理 打开(https://jqueryui.com/)然后点击Stable下载:
    image.png
  • 然后解压源码打开index.html就能看到JQueryUI的所有例子,想用那个例子就右键查看源码直接复制那块源码[推荐指数*]

BootStrap(用于全栈也是最好看)

BootStrap用法():

  • 打开(http://www.bootcss.com/)然后点击BootStrap3中文文档 或打开(https://v3.bootcss.com/)

  • 然后能看到各种各样案例也可以在百度搜索BootStrap模板

  • 下载BootStrap

    image.png

标签: 160v155j安规电容器

锐单商城拥有海量元器件数据手册IC替代型号,打造 电子元器件IC百科大全!

锐单商城 - 一站式电子元器件采购平台