zoukankan      html  css  js  c++  java
  • js封装

    方法一:

    function Tetrio(singleW){

            if(singleW == undefined){ singleW = 18; }

      this.x = 0;
      this.y = 0;
    }


    Tetrio.prototype.draw = function(context){
      
    }


    调用:
    var tetri = new Tetrio();
    tetri.draw(context);

     

    方法二:jason

    var AlertBox = {
        htmlTemplate:'<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
      <div class="modal-dialog">
        <div class="modal-content">
          <div class="modal-header">
            <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
            <h4 class="modal-title" id="exampleModalLabel">$title$</h4>
          </div>
          <div class="modal-body">
              <div class="form-group">
                $content$
              </div>
          </div>
          <div class="modal-footer">
            <button type="button" class="btn btn-default" onclick="AlertBox.Close();">Close</button>
            <button type="button" class="btn btn-primary">Submit note</button>
          </div>
        </div>
      </div>
    </div>',
        Show: function (title, content) {
            var ht = this.htmlTemplate.replace('$title$', title);
            ht = ht.replace('$content$', content);
            $('body').append(ht);
            $('#myModal').modal('show');
        },
        Close: function () {
            $('.modal-backdrop').remove();
            $('#myModal').remove();
        }
    };

    调用:
    <a href="#" onclick="AlertBox.Show('Note','aaa');" ><i class="fa fa-comment"></i></a>

      

  • 相关阅读:
    客户机(单线程 和多线程都可以用 主要是看服务器是单线程的还是多线程的)
    获得URl信息
    获取地址
    定时器的使用以及日期的学习
    生产者和消费者
    线程join
    线程的协作
    文件的解压与压缩
    文件的分割与合并
    以各种方式读写文件
  • 原文地址:https://www.cnblogs.com/aimyfly/p/4551844.html
Copyright © 2011-2022 走看看