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>

  • 相关阅读:
    day 13 python循环
    day 12 python开始--字符串
    day eleven 正则表达式以及shell基础学习
    day ten linux学习
    eight day linux网络基础
    设计模式
    JAVA中JDK和JRE的区别
    工作流基本概念__了解就行
    mybitis注解开发_curd操作
    Spring boot 整合SSM框架三层架构并前后台restful风格交互
  • 原文地址:https://www.cnblogs.com/szqblog/p/3270502.html
Copyright © 2011-2022 走看看