• eazsy-ui


    <%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
    <!DOCTYPE html>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Basic EasyLoader - jQuery EasyUI Demo</title>
    <link rel="stylesheet" type="text/css"
    href="http://www.java1234.com/jquery-easyui-1.3.3/themes/default/easyui.css">
    <link rel="stylesheet" type="text/css"
    href="http://www.java1234.com/jquery-easyui-1.3.3/themes/icon.css">
    <link rel="stylesheet" type="text/css"
    href="http://www.java1234.com/jquery-easyui-1.3.3/demo/demo.css">
    <script type="text/javascript"
    src="http://www.java1234.com/jquery-easyui-1.3.3/jquery.min.js"></script>
    <script type="text/javascript"
    src="http://www.java1234.com/jquery-easyui-1.3.3/jquery.easyui.min.js"></script>
    <script type="text/javascript"
    src="http://www.java1234.com/jquery-easyui-1.3.3/locale/easyui-lang-zh_CN.js"></script>
    </head>
    <body>
    <div id="tb"><select><option>请选择</option><option>1</option></select></div>
    <input type="radio" title="语文" />
    <div id="dd">Dialog Content.</div>
    </body>
    <script type="text/javascript">
    $('#dd').dialog({
    title : 'title',
    width : 500,
    height : 500,
    collapsible : true,//可以向上收缩
    minimizable : false,//大写固定
    closed : false,
    cache : false,
    maximizable : true,//最大化,最小化
    resizable : true,//可以缩大
    // toolbar : [ {
    // text : 'add',
    // iconCls : 'icon-edit',
    // handler : show
    // }, {
    // text : 'remove',
    // iconCls : 'icon-remove',
    // handler : function() {
    // alert("remove")
    // }
    // } ],
    // toolbar:"#tb",
    // buttons:[{text:'add',iconCls:"icon-remove",handler:function(){alert("ok")}}],//在底部
    buttons:"#tb",
    href : 'get_content.php',
    modal : true
    });
    $('#dd').dialog('refresh', 'new_content.php');
    function show() {
    $.post("", {}, function() {
    alert("ok")
    });
    }
    </script>
    </html>

  • 相关阅读:
    【笔记】程序员编程艺术 字符串转换成整数
    解决Eclipse 项目报错:Unbound classpath container: ‘JRE System Library [JavaSE-1.7]
    python_day1(初始Python)
    ActiveMQ 复杂类型的发布与订阅
    win8.1 Framework3.5安装不上的问题
    JVM探秘:内存溢出
    JVM探秘:Java对象
    JVM探秘:Java内存区域
    Vmware安装的linux系统开机黑屏,点关闭就显示虚拟机忙怎么怎么解决?
    Java基础--面向对象(上)
  • 原文地址:https://www.cnblogs.com/javaweb2/p/6284992.html
Copyright © 2020-2023  润新知