不要在我的jquery脚本中向下滚动:
jQuery('.overlay_'+onderzoekid).css("background", "green");
jQuery('.check_'+onderzoekid).each(function()
{
this.checked = true;
});
如果选中true
,请转到下一个叠加div。
答案 0 :(得分:1)
您可以使用jquery is(':checked')
检查您的元素是否已被检查,如果是,则使用scrollTop
滚动到与此元素相关的叠加层:
jQuery('.check_'+onderzoekid).each(function()
{
if ( $(this).is(':checked') )
{
$('html, body').animate({
'scrollTop' : jQuery('.overlay_'+onderzoekid).position().top
});
}
});
希望这有帮助。