0
這裏(文件)內我的代碼。就緒如何檢查多個類,並將它們應用於jquery中的所有類?
$('.checkfirst').click(function() {
if ($(".textbox").is('.required')) {
var x = $(this).offset().top - 200;
$(this).focus();
$('html,body').animate({
scrollTop: x
}, 500);
divHint = '<div class="formHint">This is required!</div>';
$(this).before(divHint);
$(this).prev(".formHint").animate({
marginLeft: "380px",
opacity: "1"
}, 200);
} else {
$(".agreement").fadeIn();
}
});
.checkfirst
基本上是提交按鈕。
有一類.textbox
的各個領域,其中一些也有.required
類。如果該人員編輯輸入字段,則刪除.required
。
所以,當用戶點擊.checkfirst
,我希望它找到所需要的領域,把和動畫旁邊都是他們的divHint
,然後滾動到所需(給它專注以及)第一個輸入字段。
現在我知道我的代碼只是將divHint
應用於提交按鈕(this
)。我需要設置一個循環,我不知道該怎麼做。
多數民衆贊成它感謝! – Jared 2010-10-20 12:06:13