我有以下 HTML 代码片段,在 iframe 中使用该srcdoc
属性有一个冗长的 TOS。我想知道当 iframe 滚动到底部时如何使用 jQuery 进行检测。(例如:用户已经看过 TOS)
<html>
<body>
<iframe srcdoc="HTML" class="tos"></iframe>
</body>
</html>
我有以下代码,但它不工作:
$(function(){
$('.tos').scroll(function () {
if ($(this).scrollTop() == $(this)[0].scrollHeight - $(this).height()) {
$('.tos-checkbox').removeAttr('disabled');
}
});
});
谢谢