Сообщение от xTODx
|
4 строка убирает цифры с класса.
|
причём тут класс? -- 4 строка у вас пока бесполезна -- подумайте почему -- это вам очень пригодится.
<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<ul id = 'edit'>
<li>
<input type = 'text' name = 'name'>
</li>
<li>
<input type = 'text' name = 'name'>
</li>
</ul>
<script>
$("#edit li input").each(function(i){
var names = $(this).attr('name');
$(this).attr('name', names+(++i));
alert($(this).attr('name'))
});
</script>
</body>
</html>