JavaScript Tutorial/jQuery/length — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 08:25, 26 мая 2010
Count the divs. Click to add more.
<html>
<head>
<script type="text/javascript" src="js/jquery-1.3.2.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(document.body).click(function () {
$(document.body).append($("<div>asdf</div>"));
var n = $("div").length;
$("span").text("There are " + n + " divs." + "Click to add more.");
}).trigger("click");
});
</script>
</head>
<body>
<body>
<span>asdf</span>
<div>asdf</div>
</body>
</html>