• 打开一个对话框


    function callback(val){

        $("#value").html(val);

    }completed

    $("#btnDialog").click(function(){

          var dialog = new Dialog({

               content : "<div id='init'></div><div id='width'></div><div id='height'></div><div id='value'></div><button id='btnOpenWin'>打开新窗口</button>",

               onLoad : function(){

                     $("#btnOpenWin").click(function(){

                          openWin("fieldpage.aspx?pu=1271","Demo",callback);

                     });

                     $("#init").html("Load ");

               },

               onResize : function(m,v){

                     if(m == 'w'){

                          $("#width").text("" + v);

                     }

                     else{

                          $("#height").text("height:" + v);

                     }

               },

               onClose : function(){

                     return confirm("Are you sure?");

               }

          });

          return false;

    });

  • 相关阅读:
    华为交换机端口安全
    华为路由交换命令收集
    Java使用JodaTime处理时间
    Java遍历Map对象的四种方式
    zabbix-2.4.8-1添加MySQL状态监控
    zabbix-2.4.8-1添加tcp状态监控
    zabbix-2.4.8-1添加nginx状态监控
    我的第四个Python小程序
    我的第三个Python小程序
    我的第二个Python小程序
  • 原文地址:https://www.cnblogs.com/nuaaydh/p/4313201.html
Copyright © 2020-2023  润新知