<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Test</title>
<script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
<script>
$(document).ready(function(){
$('.add').click(function(){
$('form[name=form1]').append('<div><input id="c" name="c" value="c:" type="text" /> <img class="delete" src="/img/delete.png" /></div>');
});
$("div .delete").click(function () {
$(this).parents('div').remove();
});
});
</script>
</head>
<body>
<form name="form1" action="test.php" method="post">
<div><input id="a" name="a" value="a:" type="text" /> <img class="add" src="/img/add.png" /> <img class="delete" src="/img/delete.png" /></div>
<div><input id="b" name="b" value="b:" type="text" /> <img class="delete" src="/img/delete.png" /></div>
<input name="" type="submit" />
</form>
</body>
</html>
Вот что получилось
Но так я и не понял почему добавленный input не удаляется