写毕设的时候导师让我改需求,让我增加选座功能。现在卡在前端。需求具体是根据第二行td的数量生成对应的下拉菜单在同行第三个td中。页面如下
目前可以取到数量但是无法具体进行添加减少工作
```java
$("#shop-xx #num22").each(function(){
s+=parseInt($(this).find('input[class*=text_box]').val())*parseFloat($(this).find('span[class*=price]').text());
n=parseInt($(this).find('input[class*=text_box]').val());
for(var a=0;a<n;a++){
var newinput=document.createElement("input");
newinput.type="text";
newinput.id="siterow"+a;
var newinput1=document.createElement("input");
newinput1.type="text";
newinput1.id="siterow1"+a;
// document.getElementById("siterow").appendChild(newinput);
// document.getElementById("siterow").appendChild(newinput1);
// $(this).find('td[id*=siterow]').appendChild(newinput);
}
});