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