码迷,mamicode.com
首页 > Web开发 > 详细

js封装

时间:2015-06-04 15:34:47      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:

方法一:

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>

  

js封装

标签:

原文地址:http://www.cnblogs.com/aimyfly/p/4551844.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!