• jquery easy ui 学习 (2) customtools window


    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="UTF-8">
        <title>Custom Window Tools - jQuery EasyUI Demo</title>
        <link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
        <link rel="stylesheet" type="text/css" href="../../themes/icon.css">
        <link rel="stylesheet" type="text/css" href="../demo.css">
        <script type="text/javascript" src="../../jquery.min.js"></script>
        <script type="text/javascript" src="../../jquery.easyui.min.js"></script>
    </head>
    <body>
        <h2>Custom Window Tools</h2>
        <p>Click the right top buttons to perform actions.</p>
        <div style="margin:20px 0;">
            <a href="javascript:void(0)" class="easyui-linkbutton" onclick="$('#w').window('open')">Open</a>
            <a href="javascript:void(0)" class="easyui-linkbutton" onclick="$('#w').window('close')">Close</a>
        </div>
        <div id="w" class="easyui-window" title="Custom Window Tools" data-options="iconCls:'icon-save',minimizable:false,tools:'#tt'" style="500px;height:200px;padding:10px;">
            The window content.
        </div>
        <div id="tt">
            
            // ajax shixian
            <a href="javascript:void(0)" class="icon-add" onclick="javascript:alert('add')"></a>
            <a href="javascript:void(0)" class="icon-edit" onclick="javascript:alert('edit')"></a>
            <a href="javascript:void(0)" class="icon-cut" onclick="javascript:alert('cut')"></a>
            <a href="javascript:void(0)" class="icon-help" onclick="javascript:alert('help')"></a>
        </div>
    
    </body>
    </html>

    实例:

  • 相关阅读:
    PE文件解析器的编写(二)——PE文件头的解析
    PE解析器的编写(一)——总体说明
    PE文件详解(九)
    PE文件详解(八)
    06_建造者模式
    05_模板方法模式
    04_抽象工厂模式
    03_简单工厂模式(静态工厂模式)
    02_工厂方法模式
    01_单例模式
  • 原文地址:https://www.cnblogs.com/timelesszhuang/p/3685884.html
Copyright © 2020-2023  润新知