Javascript.RU

Создать новую тему Ответ
 
Опции темы Искать в теме
  #1 (permalink)  
Старый 27.04.2015, 19:02
Аспирант
Отправить личное сообщение для petlyra5 Посмотреть профиль Найти все сообщения от petlyra5
 
Регистрация: 27.08.2012
Сообщений: 30

Ограничение по введенному числу input
Всем привет. А подскажите как поставить минимальное значение для поля input
$("#modalProducts").find(".first .btn").on("click", function () {
		$("#modalProducts").addClass("modal-contact");
		$(".first").css("display","none");
		$(".second").fadeIn(700);

		var productWeight = $(this).parents(".products__item").find(".products__weight").text();

		var quantity = $(this).parents(".products__item").find(".quantity").val();
		var prodArt = $(this).parents(".products__item").find("#prodArt").val();
		var price = $(this).parents(".products__item").find(".price").text();
		var summ = quantity * price;


		$(".second").find("input[name=OutSum]").val(summ);
		$(".second").find(".s-orderPrice .price").text(summ);
		$(".second").find(".s-orderTitle span").text(productWeight);

		$(".second").find("#quant").val(quantity);


		$(".second").find("#Desc").val("Икра черная осетровая " + productWeight);
		$(".second").find("#Shp_item").val(prodArt);


		var data = $("#orderIkra").formSerialize();
	});

	$('.products__item__ikra .products__item a').on("click", function () {
		$("#modalProducts").addClass("modal-contact");
		$(".first").css("display","none");
		$(".second").fadeIn(700);

		var productWeight = $(this).parents(".products__item").find(".products__weight").text();
		var quantity = $(this).parents(".products__item").find(".quantity").val();
		var prodArt = $(this).parents(".products__item").find("#prodArt").val();
		var price = $(this).parents(".products__item").find(".price").text();

		$(".second").find("input[name=OutSum]").val(price);
		$(".second").find(".s-orderPrice .price").text(price);
		$(".second").find(".s-orderTitle span").text(productWeight);

		$(".second").find("#quant").val(quantity);

		$(".second").find("#Desc").val("Икра черная осетровая " + productWeight);
		$(".second").find("#Shp_item").val(prodArt);

		var data = $("#orderIkra").formSerialize();
	});


	$('#modalProducts').on('hidden.bs.modal', function (e) {
		$(".first").css("display","block");
		$(".second").css("display","none");
		$(this).removeClass("modal-contact");
	});


	// аккордион
	$('#accordion').on('show.bs.collapse', function (e) {
		$(".panel").removeClass("active");
		$(e.target).parents('.panel').addClass('active');
	});

	$('#accordion').on('hide.bs.collapse', function (e) {
		$(e.target).parents('.panel').removeClass('active');
	});


	// валидация формы

	$("#orderIkra").validate({
		rules: {
			inputFio: {
				required: true
			},
			inputPhone: {
				required: true
			},
			inputAddress: {
				required: true
			}
		},
		messages: {
			inputFio: {
				required: "заполните это поле"
			},
			inputPhone: {
				required: "заполните это поле"
			},
			inputAddress: {
				required: "заполните это поле"
			}
		},
		errorClass: "error",
		submitHandler: function(form) {
			$('#orderIkra').find('.orderIkra1__spinner').fadeIn('400');
			$(form).ajaxSubmit({
				success: function() {
					setTimeout(function () {
						$('.orderIkra__spinner').fadeOut('400');
						$('.modal__form1').fadeOut('400');
						setTimeout(function () {
							$('.modal__success1').fadeIn('600');
						}, 500);
						yaCounter26868429.reachGoal('order');
						yaCounter25630763.reachGoal('order');
						$("#orderIkra").clearForm();
					}, 1500);
				}
			});
		}
	});
Ответить с цитированием
  #2 (permalink)  
Старый 27.04.2015, 23:39
Новичок на форуме
Отправить личное сообщение для Andrew_Nest Посмотреть профиль Найти все сообщения от Andrew_Nest
 
Регистрация: 27.04.2015
Сообщений: 9

А не проще просто проверку на кол-во символов сделать?
Ответить с цитированием
Ответ



Опции темы Искать в теме
Искать в теме:

Расширенный поиск


Похожие темы
Тема Автор Раздел Ответов Последнее сообщение
Нужно связать input и ползунок jQuery Slider / jQuery ui IffeR jQuery 4 16.08.2014 18:01
Ограничение ползунка input range HJ90 Элементы интерфейса 0 21.06.2013 13:22
При добавлении DOCTYPE "плывут" размеры input type=text Demath (X)HTML/CSS 4 08.07.2012 19:27
Opera не выполняет style.fontSize=... в поле input Маэстро Opera, Safari и др. 6 20.06.2011 12:03
Разным элементам input - разное форматирование. Как? eclipse (X)HTML/CSS 1 25.10.2007 13:55