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); }