zoukankan      html  css  js  c++  java
  • 弹出选择:树

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    <html xmlns="http://www.w3.org/1999/xhtml">

    <head>    

      <title>SelectTree 弹出选择树</title>    

      <meta http-equiv="content-type" content="text/html; charset=UTF-8" />

      <link href="../demo.css" rel="stylesheet" type="text/css" />

          <script src="../../scripts/boot.js" type="text/javascript"></script>        

    </head>

      <body>    

        <h1>SelectTree 弹出选择树</h1>     

            <input id="btnEdit1" class="mini-buttonedit" onbuttonclick="onButtonEdit"/>           

    <script type="text/javascript">        

        mini.parse();

             function onButtonEdit(e) {            

          var btnEdit = this;            

          mini.open({                

            url: bootPATH + "../demo/CommonLibs/SelectTreeWindow.html",                

            showMaxButton: false,                

            title: "选择树",                

             350,                

            height: 350,                

            ondestroy: function (action) {                                       

              if (action == "ok") {                        

                var iframe = this.getIFrameEl();                        

                var data = iframe.contentWindow.GetData();                        

                data = mini.clone(data);                        

                if (data) {                            

                  btnEdit.setValue(data.id);                            

                  btnEdit.setText(data.text);                        

                 }                    

              }                

            }            

          });                                

        }       

        </script>    

      <div class="description">        

      <h3>Description</h3>            

      </div>

    </body>

    </html>

  • 相关阅读:
    细数ASP.NET MVC框架的7大顶级功能
    Ubuntu 10.10更新源列表
    使用iTunes将任意mp3文件转为iPhone铃声
    简单5步,在新浪微博上关联多个博客
    在windows 7 建立一个弹出光驱的快捷方式
    中国人民太伟大了!
    Ubuntu 10.10
    du 熊填数字
    WPF学习02——XAML编译
    Debugging WPF data bindings
  • 原文地址:https://www.cnblogs.com/szqblog/p/3270502.html
Copyright © 2011-2022 走看看