jQuery append not working in IE8

前端 未结 5 1304
说谎
说谎 2021-01-12 06:16
 $(\'#buttonadd\').click(function(){
            if ($counter < 10)
            {
                $counter++;
                $countonlyadd++;
                $(\         


        
5条回答
  •  花落未央
    2021-01-12 07:14

    It appears you're appending a single TR to a div, which may be your problem. You should append it to the TBODY of a TABLE instead.

提交回复
热议问题