Liferay 页面自动刷新?

发布于 2024-12-14 14:49:00 字数 108 浏览 0 评论 0原文

例如,我们希望有一个显示博客的页面,以便在用户保持页面打开状态时不时刷新。

有谁知道有一种快速简便的方法可以让 liferay 页面在某个时间间隔自动刷新? (最好不必创建/修改主题)。

We would like, for example, to have a page that displays a blog to refresh from time to time when a person leaves the page open.

Does anyone know of a quick and easy way to get a liferay page to auto-refresh at some interval? (preferably without having to create/modify a theme).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

岁月苍老的讽刺 2024-12-21 14:49:00

如果您不想修改主题,只需将新的 Web Contetn Display portlet 添加到您的页面并创建/选择仅

<script type="text/JavaScript">
    setTimeout("location.reload(true);",10000);
</script>

作为内容的文章。请务必转到丰富的测试编辑器字段的源视图(如果您使用它)。

根据您的需要更改 10000(毫秒)。

If you dont want to modify theme than just add new Web Contetn Display portlet to your page and create/select article that has only

<script type="text/JavaScript">
    setTimeout("location.reload(true);",10000);
</script>

as content. Be sure to go to source view of your rich test editr field (if you use it).

Change 10000 (milliseconds) to your need.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文