开发者

Populating div with checkboxes

I use this code to determine checkbox width and height:

var chk = $('input[type="checkbox"]:first');

chkWidth = chk.innerWidth() 
   + parseInt(chk.css('margin-left').replace('px', '')) 
   + parseInt(chk.css('margin-right').replace('px', '')); /*IS there better way instead of px replace?? */

chkHeight = chk.inn开发者_运维知识库erHeight()
   + parseInt(chk.css('margin-top').replace('px', '')) 
   + parseInt(chk.css('margin-bottom').replace('px', ''));

fieldWidth = gamefield.innerWidth();
fieldHeight = gamefield.innerHeight();

Then i try to fill div with the number of checkboxes that exactly fits given div. In fact i get a lot of checkboxes out of div.

  • http://dl.dropbox.com/u/3473965/jq/tetris.html
  • http://dl.dropbox.com/u/3473965/jq/tetris.js

Is there anyway to solve this? Thank you!


leaving other things as such, this makes the difference (on FF3.5):

    var cols=Math.floor(fieldWidth/chkWidth);
var rows=Math.floor(fieldHeight/chkHeight);
var html='';
for(var i=0;i<=rows;i++) //if yo use i<rows there is space for one more row
{
    for(var j=0;j<cols;j++)
    {
        html +="<input type='checkbox'/>";
    }
}

gamefield.html(html);
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜