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>

  • 相关阅读:
    Codeforces Round #161 (Div. 2)
    Codeforces Round #160 (Div. 2)
    Codeforces Round #159 (Div. 2)
    Codeforces Round #157 (Div. 2)
    世界树的考验「NOIP多校联考 2019」
    最大异或和
    腿部挂件「NOIP多校联考 2019」
    玩具取名「HAOI2008」
    涂色「CQOI2007」
    唱、跳、rap 和篮球「TJOI2019」
  • 原文地址:https://www.cnblogs.com/szqblog/p/3270502.html
Copyright © 2011-2022 走看看