zoukankan      html  css  js  c++  java
  • 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>

  • 相关阅读:
    文件操作和网络通信
    h4和c2的简单内容
    Node介绍
    终端命令和环境变量
    C#连接MySQL数据库方法
    多点触控
    wp7全景控件
    Silverlight数据绑定转换示例
    Windows Phone 7两个页面动画跳转
    使用.NET操作SQLLITE
  • 原文地址:https://www.cnblogs.com/javaweb2/p/6284992.html
Copyright © 2011-2022 走看看