我在面板中有一个表格,它是使用 c# 代码动态创建的。我用这张表来显示新闻和事件。我的问题是如何让这张表的内容自动垂直滚动?
问问题
443 次
1 回答
0
You can do it on page load as follows:
$().ready(function () {
$("table#your-table").autoscroll();
});
More information at jQuery aautoscroll
于 2013-01-22T08:06:28.827 回答