Всем Доброго времени суток!
Не пинайте сильно тугодума
Как заставить сие творение работать, никак не пойму, без .click , просто цикл работает.
По клику должно добавляться 200 тэгов img в контейнере с классом topBlock, циклом перебирая цифры по условиям.
Подскажите пожалуйста..
Спасибо!
<html>
<head>
<title>тест</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
$(document).ready(function(){
$(".render").click(function(){
var namemodel = $("input[name='model']").val();
for (var i = 1; i < 201; i++) {
if (i <= 9) {
$(".topBlock").append("<img src='photos/" + namemodel + "-000" + i + ".JPG' border='0'>");
continue;
}
if (i <= 99) {
$(".topBlock").append("<img src='photos/" + namemodel + "-00" + i + ".JPG' border='0'>");
continue;
}
if (i <= 200) {
$(".topBlock").append("<img src='photos/" + namemodel + "-0" + i + ".JPG' border='0'>");
continue;
}
}
});
});
</script>
</head>
<body bgcolor="#000000">
<form>
<input type="text" class="hideModel" name="model" value="">
<input type="submit" name="ok" class="render" value="Просмотр модели">
</form>
<div align="center" class="topBlock">
</div>
</body>
</html>