循环0-9的数字并形成一个正方形

时间:2015-12-01 13:33:08

标签: javascript jquery loops

我想根据用户的输入循环0-9的数字。并使用这些数字在表格内形成一个正方形。这是我的代码。

$(document).ready(function() {
    $( "#button" ).click(function() {
        var x = $("#input").val(); 
        $("td").each(function(index,value){
            if(index < x){
                $(this).text(index);
            }
            $(this).find("td:last").addClass("last");
                $(this).find("td").each(function() {
                   if ($(this).hasClass("last")) {
                       for(var y = $(".last"); y < 9; y ++ ){
                           alert(y);
                       }
                      // this is the last column
                   } 
            });
        });

        });
    });

http://jsfiddle.net/newluj/0g4mj85p/14/

0 个答案:

没有答案