随机数生成器,无需刷新
你好 我想创建一个网页,它可以不断向数据库发送随机值而无需刷新。
例如,
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 JavaScript 来执行此操作。这非常简单。
演示: http://jsfiddle.net/mattball/c9t3T/
根据示例中的 HTML,您可能也应该花一些时间开始学习CSS。
You can use JavaScript to do this. It's extremely simple.
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.
您可以创建一个显示随机值的 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.
我想知道为什么你需要这个视图。您可以使用一些计划的作业来完成此操作,探索
Quartz
如果您仍然想这样做..请使用DWR
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