Сообщение от skrudjmakdak
|
ну во-первых:
id="add" я такую запись видел 2 раза. а 2 id'шника под одним именем быть не могут
ну и второе. где идет ошибка...
это сама функция function add_new_image(b){
сначала вы ее определяйте.. а потом еще одна функция с таким же именем.. т.е. код со старым скриптом стирайте и присваивайте новый скрипт.. т.е. переопределяете функцию
можете сделать 2ве функции, но с разными именами
|
Большое спасибо Вам! Может кому пригодиться вот исправленный код:
<script type="text/javascript" src="../reports/functions/jquery-1.2.6.pack.js"></script>
<form action='test.php' method='post'>
<table border='1' cellspacing='1' cellpadding='6' width='100%' id="table_container">
<tr>
<td>
Первая таблица
</td>
</tr>
</table>
<input type="button" value="Добавить поле" id="add" onclick="return add_new_image('#table_container');">
<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','14'+total)
.attr('name','a1[]')
)
)
.append(
$('<td>')
.attr('id','td_ name_'+total)
.css({width:'50%'})
.append(
$('<input type="text"/>')
.css({width:'100%'})
.attr('id','54'+total)
.attr('name','a2[]')
)
)
.append(
$('<td>')
.attr('id','td_ name_'+total)
.css({width:'35%'})
.append(
$('<input type="text"/>')
.css({width:'100%'})
.attr('id','54'+total)
.attr('name','a3[]')
)
)
.append(
$('<td>')
.attr('id','td_ name_'+total)
.css({width:'10%'})
.append(
$('<input type="text" />')
.css({width:'100%'})
.attr('id','54'+total)
.attr('name','a4[]')
)
)
.appendTo(a);
}
$(document).ready(function() {
add_new_image('#table_container');
});
</script>
<input type="button" value="Добавить поле 2" id="add2" onclick="return add_new_image('#table_container2');">
<table border='1' cellspacing='1' cellpadding='6' width='100%' id="table_container2">
<tr>
<td>
Вторая таблица
</td>
</tr>
</table>
<br>
<script type="text/javascript">
var tot = 1000;
function add_new_imageb(b){
tot++;
$('<tr>')
.attr('id','tr_image_'+tot)
.css({lineHeight:'0px'})
.append (
$('<td>')
.attr('id','td_title_'+tot)
.css({width:'5%'})
.append(
$('<input type="text"/>')
.css({width:'100%'})
.attr('id','11'+tot)
.attr('name','b1[]')
)
)
.append(
$('<td>')
.attr('id','td_ name_'+tot)
.css({width:'50%'})
.append(
$('<input type="text"/>')
.css({width:'100%'})
.attr('id','52'+tot)
.attr('name','b2[]')
)
)
.append(
$('<td>')
.attr('id','td_ name_'+tot)
.css({width:'35%'})
.append(
$('<input type="text"/>')
.css({width:'100%'})
.attr('id','52'+tot)
.attr('name','b3[]')
)
)
.append(
$('<td>')
.attr('id','td_ name_'+tot)
.css({width:'10%'})
.append(
$('<input type="text" />')
.css({width:'100%'})
.attr('id','52'+tot)
.attr('name','b4[]')
)
)
.appendTo(b);
}
$(document).ready(function() {
add_new_imageb('#table_container2');
});
</script>
<input type='submit' value='Сдать' name='Сдать'>
</form>
<pre>
<?php print_r ($_POST);?>
</pre>