随机数生成器,无需刷新

发布于 2024-11-07 18:36:03 字数 522 浏览 0 评论 0原文

你好 我想创建一个网页,它可以不断向数据库发送随机值而无需刷新。

例如,

<html>
  <HEAD>
    <TITLE>HTML Title</TITLE>
  </HEAD>
  <BODY>

    <H3 ALIGN="CENTER">
      Ramdom number from 0 to 10 : 
      <FONT COLOR="RED">
        <%= (int) (Math.random() * 10) %>
      </FONT>
    </H3>
    <H4 ALIGN="CENTER">Refresh the page to see if the number changes...</H4>
  </BODY>
</HTML>

我应该朝哪个方向发展,要么使用小程序,要么使用易于采用的东西。谢谢

Hello
I want to create a web page which can continually sending random value to data base without doing refresh .

For example

<html>
  <HEAD>
    <TITLE>HTML Title</TITLE>
  </HEAD>
  <BODY>

    <H3 ALIGN="CENTER">
      Ramdom number from 0 to 10 : 
      <FONT COLOR="RED">
        <%= (int) (Math.random() * 10) %>
      </FONT>
    </H3>
    <H4 ALIGN="CENTER">Refresh the page to see if the number changes...</H4>
  </BODY>
</HTML>

in which direction i should go either of using applets or something which can easily be adopted . Thanks

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

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

发布评论

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

评论(3

彩扇题诗 2024-11-14 18:36:03

您可以使用 JavaScript 来执行此操作。这非常简单。

window.onload = function ()
{
    var output = document.getElementById('foo');

    setInterval(function ()
    {
        output.innerHTML = Math.floor(Math.random() * 10);
    }, 1000);
};

演示: http://jsfiddle.net/mattball/c9t3T/

根据示例中的 HTML,您可能也应该花一些时间开始学习CSS

You can use JavaScript to do this. It's extremely simple.

window.onload = function ()
{
    var output = document.getElementById('foo');

    setInterval(function ()
    {
        output.innerHTML = Math.floor(Math.random() * 10);
    }, 1000);
};

Demo: http://jsfiddle.net/mattball/c9t3T/

Based on the HTML in your example, you should probably take some time and start learning CSS as well.

清欢 2024-11-14 18:36:03

您可以创建一个显示随机值的 div,并使用 javascript 函数修改 div 中的值。

You could create a div in which is displayed the random value, and modifiy the value in the div using javascript function.

醉生梦死 2024-11-14 18:36:03

我想创建一个网页,它可以连续向数据库发送随机值而无需刷新。

我想知道为什么你需要这个视图。您可以使用一些计划的作业来完成此操作,探索Quartz

如果您仍然想这样做..请使用DWR

I want to create a web page which can continually sending random value to data base without doing refresh .

I wonder why do you need view for this. You can do it using some scheduled job , explore Quartz

If still you want to do that.. go for DWR

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