我如何滚动到webforms texetBox使用c中的特定行#

这个问题在这里已经有了答案:

  • 动态滚动Textarea 4答案
  • jQuery滚动到元素24的答案

  • 你有没有尝试过使用scrollTop?

    例如

    function scrollTextBox()
    {
        var textBox = document.getElementById("<%= TextBox1.ClientID %>");
        textBox.scrollTop = 30;
    }
    

    您需要通过使用行号来计算scrollTop值。

    链接地址: http://www.djcxy.com/p/23101.html

    上一篇: how can i scroll to specific line in a webforms TexetBox using c#

    下一篇: animating an anchor link