Показать сообщение отдельно
  #1 (permalink)  
Старый 29.07.2013, 09:33
Новичок на форуме
Отправить личное сообщение для Константин Владимирович 5 Посмотреть профиль Найти все сообщения от Константин Владимирович 5
 
Регистрация: 29.07.2013
Сообщений: 5

Необходимо чтобы постом приходили разные значения двух jquery скриптов
А выходит так, будто только один из скриптов отрабатывает и введёные значения приходят с именами второго скрипта.

<table border='1' cellspacing='1' cellpadding='6' width='100%' id="table_container">
</table>

<script type="text/javascript">
var total = 0;
function add_new_image(a){
   total++;
   $('<tr>')
   .attr('id','tr_image_'+total)
   .css({lineHeight:'0px'})
   .append (
       $('<td>')
       .attr('id','td_title_'+total)
		.css({width:'5%'})
       .append(
           $('<input type="text"/>')
		   .css({width:'100%'})
		   	.attr('id','1'+total)
           .attr('name','a[]')
       )                              
                               
    )
	
	
	
.append(
   $('<td>')
   .attr('id','td_ name_'+total)
.css({width:'50%'})
   .append(
       $('<input type="text"/>')
	   .css({width:'100%'})
			 .attr('id','5'+total)
       .attr('name','invent_numbe[]')
	   
    )                              
)


.append(
   $('<td>')
   .attr('id','td_ name_'+total)
.css({width:'35%'})
   .append(
       $('<input type="text"/>')
	      .css({width:'100%'})
       .attr('id','5'+total)
       .attr('name','invent_numbe[]')
	       )                              
)

.append(
   $('<td>')
   .attr('id','td_ name_'+total)
 .css({width:'10%'})
   .append(
       $('<input type="text" />')
	    .css({width:'100%'})
	    .attr('id','5'+total)
       .attr('name','invent_number10[]')
	
    )                              
)

     .appendTo(a);                 
}
$(document).ready(function() {
    add_new_image('#table_container');
  });
</script>



<script type="text/javascript">  
var totalb = 1000;
function add_new_image(b){
   totalb++;
   $('<tr>')
   .attr('id','tr_image_'+totalb)
   .css({lineHeight:'0px'})
   .append (
       $('<td>')
       .attr('id','td_title_'+totalb)
		.css({width:'5%'})
       .append(
           $('<input type="text"/>')
		   .css({width:'100%'})
		   	.attr('id','1'+totalb)
           .attr('name','a1[]')
       )                              
                               
    )
	
	
	
.append(
   $('<td>')
   .attr('id','td_ name_'+totalb)
.css({width:'50%'})
   .append(
       $('<input type="text"/>')
	   .css({width:'100%'})
			 .attr('id','5'+totalb)
       .attr('name','invent_number2[]')
	   
    )                              
)


.append(
   $('<td>')
   .attr('id','td_ name_'+totalb)
.css({width:'35%'})
   .append(
       $('<input type="text"/>')
	      .css({width:'100%'})
       .attr('id','5'+totalb)
       .attr('name','invent_number3[]')
	       )                              
)

.append(
   $('<td>')
   .attr('id','td_ name_'+totalb)
 .css({width:'10%'})
   .append(
       $('<input type="text" />')
	    .css({width:'100%'})
	    .attr('id','5'+totalb)
       .attr('name','invent_number4[]')
	
    )                              
)


  
     .appendTo(b);                 
}
$(document).ready(function() {
      add_new_image('#table_container2');
});


</script>

<table border='1' cellspacing='1' cellpadding='6' width='100%' id="table_container">
</table>
Ответить с цитированием