Chinaunix首页 | 论坛 | 博客
  • 博客访问: 161455
  • 博文数量: 19
  • 博客积分: 470
  • 博客等级: 下士
  • 技术积分: 252
  • 用 户 组: 普通用户
  • 注册时间: 2012-03-06 09:16
文章分类

全部博文(19)

文章存档

2013年(2)

2012年(17)

分类: Python/Ruby

2012-03-23 09:10:29

1,JS进度条做法:

点击(此处)折叠或打开

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "">
  2. <html xmlns="" >
  3. <head>
  4. <title>进度条</title>
  5. <style type="text/css">
  6. body{
  7. text-align:center;
  8. }
  9. .graph{
  10. width:355px;
  11. border:1px solid #66A0D1;
  12. height:14px;
  13. background-color:#88BADF;

  14. }
  15. #bar{
  16. display:block;
  17. background:#56D3FF;
  18. float:left;
  19. height:100%;
  20. text-align:center;
  21. }
  22. #barNum{
  23. position:absolute;
  24. }
  25. </style>
  26. <script type="text/javascript">
  27. function $(obj){
  28. return document.getElementById(obj);
  29. }
  30. function go(){
  31. $("bar").style.width = parseInt($("bar").style.width) + 1 + "%";
  32. $("bar").innerHTML = $("bar").style.width;
  33. if($("bar").style.width == "100%"){
  34. window.clearInterval(bar);
  35. }

  36. }
  37. var bar = window.setInterval("go()",100);
  38. window.onload = function(){
  39.  
  40. }
  41. </script>
  42. </head>
  43. <body>
  44. <div class="graph">
  45.     <strong id="bar" style="width:1%;"></strong>
  46. </div>
  47. </body>
  48. </html>

2,编码检测

点击(此处)折叠或打开

  1. <span id="l"></span>
  2. <script>
  3. document.getElementById("l").innerHTML = "\u6807\u9898 \u6216\u8005 \u5185\u5bb9 \u81f3\u5c11\u8981\u586b\u5199\u4e00\u9879\u624d\u53ef\u4ee5\u53d1\u5e03\u5662\uff5e";
  4. </script>
3,链接地址:JavaScript/HTML格式化:
  


 

阅读(1970) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~