慕尼黑的夜晚无繁华
尝试这个<!DOCTYPE html><html><head><style>p{margin-top : 150px;}</style><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script><script>$(document).ready(function(){ $(window).on('scroll',function(){ var a = $(window).scrollTop(); //alert(a); if( a > 50) { $("p").css("textDecoration", "underline"); } else { $("p").css("textDecoration", "none"); } });});</script></head><body><div><p>If you scroll, I will underline myself.</p><p>If you scroll, I will underline myself.</p><p>If you scroll, I will underline myself.</p><p>If you scroll, I will underline myself.</p></div></body></html>您也可以在这里尝试示例。