位置样式为绝对时滚动时的文本框定位问题

Posted

技术标签:

【中文标题】位置样式为绝对时滚动时的文本框定位问题【英文标题】:Textbox positioning issue on scroll when the position style is absolute 【发布时间】:2013-07-24 02:12:51 【问题描述】:

我在页面上有一个 Asp:textbox(该页面也有一些不同的控件和 div),我在事件“onkeyup”上设置 style=position:absolute。 并根据输入到文本框的沙特尔动态增加其高度。但问题是当用户向下或向上滚动页面时,文本框的位置始终保持固定。”在事件“onblur”上,我更改了样式=位置= ",但是当焦点在文本框上时,它会随着向上/向下滚动而移动。 这是代码

    <asp:TextBox ID="txtComment1"  runat="server" Height="13px"  Width="99%" MaxLength="40" TextMode="MultiLine"   
     onkeyup="SetHeight(this)" onblur="Blur(this)"></asp:TextBox>

     <script type="text/javascript">

    //Setheight function is used to change the style of position:"Absolute"

    function Setheight(textscroll) 
        textscroll.style.height = "14px";
        textscroll.style.position = "absolute";
        textscroll.style.width = "49%";
    

//Blur is used to again change the style position:""

 function Blur(txtdesc1) 


        txtdesc1.style.height = "14px";
        txtdesc1.style.position = "";
        txtdesc1.style.width = "99%";

    

    </script>

附: : 我试过 HoverMenuExtender 但还是有同样的问题

【问题讨论】:

这是一个 100% 的客户端问题。显示您的实际 html + CSS,而不是您的 .NET 服务器端代码! 它不是服务器端代码,它只是一个客户端。 不是 HTML,它是 .NET,它是服务器代码! 【参考方案1】:

如果您希望 html 项目即使在滚动时也跟随页面向下,请尝试 position: fixed,这就是 LinkedIn 和 FB 等网站上所有标杆页眉和页脚的工作方式。

【讨论】:

我不希望我的文本框跟随向下翻页和向上翻页滚动。我希望它稳定。

以上是关于位置样式为绝对时滚动时的文本框定位问题的主要内容,如果未能解决你的问题,请参考以下文章

h5滚动屏幕之后,绝对定位位置不在页面最底部

HTML+CSS+JS实现点击超链接弹出文本框效果

请教如何通过CSS实现div的固定位置,不随页面滚动消失

div绝对定位后 浏览器没得滚动条

定位的区别

绝对定位的元素在顶部z-index下不显示。