我有这样大的形式,因为这样正在使用提单。
但是,如果强制性领域在步骤1中是空的,则需要停止将步骤1移至步骤2。
为此,我改变了职能。
function validateStep(step) {
if (step == fieldsetCount) return;
var error = 1;
var hasError = false;
$( #formElem ).children( :nth-child( + parseInt(step) + ) ).find( :input:not(button) ).each(function () {
var $this = $(this);
var valueLength = jQuery.trim($this.val()).length;
if (valueLength == ) {
hasError = true;
$this.css( border-color , #f8bcc2 )
// here i added one function
$( #steps ).each(function () {
// alert( hhh );
marginLeft: 0 + px
}
);
// $( #steps ).css( margin-Left , 0 )
}
else
$this.css( border-color , #8DC440 );
});
预先感谢......任何解决办法