F
foobar
hallo,
wie kann man in jquery über eine Schleife allen a tags in div.box eine bestimmte class zuweisen?
wie kann man in jquery über eine Schleife allen a tags in div.box eine bestimmte class zuweisen?
HTML:
<!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>Unbenanntes Dokument</title>
<html>
<head>
<title>jQuery test page</title>
<script type="text/javascript" src="jquery-1.3.2.js"></script>
<script type="text/javascript">
$(document).ready(function(){
var boxes = $(".box");
for (i=0; i<boxes.length; i++){
$(boxes[i] + " a").addClass("aId-"+i);
}
});
</script>
</head>
<body>
<div class="box">
<div class="row">
<input type="text" value=""/>
<span>
<a href="#" >Hinzufügen</a> <!-- <a href="#" class="aId-0">Hinzufügen</a> -->
<a href="#" >Löschen</a> <!-- <a href="#" class="aId-0">Löschen</a> -->
</div>
</div>
<div class="box">
<div class="row">
<input type="text" value=""/>
<span>
<a href="#" >Hinzufügen</a> <!-- <a href="#" class="aId-1">Hinzufügen</a> -->
<a href="#" >Löschen</a> <!-- <a href="#" class="aId-1">Löschen</a> -->
</div>
</div>
</body>
</html>