Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在滚动文本区域中显示许可协议并检测用户何时滚动到文本区域的底部,然后启用提交按钮。有没有办法做到这一点?
这是javascript中的一个实现。核心功能是:
function textareaAtEnd(area) { return ((area.scrollTop + area.offsetHeight) > area.scrollHeight); }