美文网首页
2019-04-30scrollTop

2019-04-30scrollTop

作者: 果冻_4c9b | 来源:发表于2019-04-30 17:43 被阅读0次
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title></title>
        <script src="../js/jquery.js" type="text/javascript" charset="utf-8"></script>
        <script type="text/javascript">
            $(function(){
                $('button').click(function(){
                    alert($(document).scrollTop());
                })  
            })  
        </script>
        <style type="text/css">
            
            button{
                position: fixed;
                right: 0;
                bottom: 0;
            }
            body{
                height: 3000px;
            }
        </style>
    </head>
    <body>
        <button type="button">提交</button>
    </body>
</html>

网友评论

      本文标题:2019-04-30scrollTop

      本文链接:https://www.haomeiwen.com/subject/liovnqtx.html