JSÊó±ê¸úËæÌØЧ½Ì³Ì

µ¼Óï JavaScriptÊó±ê¸úËæÌØЧʹÓÃ:Õâ¸öÒ»¸öºÜ¼òµ¥µÄÊó±êµã»÷¸úËæ°¸Àý£¬Õâ¸öЧ¹û²¢Ã»Óдó¼ÒÏëÏñµÄÄÇôÉñÆ棬¾ÍÁ½¸öÊôÐÔ£»¾ßÌå´úÂëÈçÏ£º<!DOCTYPE html PUBLIC "- W3C DTD XHTML 1 0 Transitional EN" "http

JavaScriptÊó±ê¸úËæÌØЧʹÓÃ:
Õâ¸öÒ»¸öºÜ¼òµ¥µÄÊó±êµã»÷¸úËæ°¸Àý£¬Õâ¸öЧ¹û²¢Ã»Óдó¼ÒÏëÏñµÄÄÇôÉñÆ棬¾ÍÁ½¸öÊôÐÔ£»
¾ßÌå´úÂëÈçÏ£º
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <style>
  5. div {width:30px; height:30px; background:yellow;}
  6. #test {z-index:100; width:20px; height:20px;left:150px; top:150px; background:red; position:absolute;}
  7. </style>
  8. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  9. <title>Êó±êµã»÷¸úËæµÄDivЧ¹û</title>
  10. <script>
  11. window.onload=function ()
  12. {
  13.    document.getElementById('test').onclick=function (ev)
  14.         {
  15.              //console.log(ev);   //²é¿´Êó±êµã»÷µÄÐÅÏ¢ £¨ÈçºÎʱµã»÷¡¢µã»÷µÄλÖõȣ©
  16.                 var test = document.getElementById('test');
  17.                 test.style.left = ev.clientX+'px';
  18.                 test.style.top = ev.clientY+'px';
  19.         };
  20. }
  21. </script>
  22. </head>
  23. <body>
  24. <div id="test"></div>
  25.  
  26. </body>
  27. </html>
¸´ÖÆ´úÂë


   ÕâÊÇÒ»¸öÊó±êÒƶ¯¸úËæÌØЧ£¬»ù±¾Ð§¹ûÒѾ­×ö³öÀ´£¬»¹²»ÊǺÜÍêÉÆ£¬ÓÐÐËȤµÄ¿ÉÒÔ¼ÌÐøÓÅ»¯Ï£»

cssÑùʽ£º
  1. <style>
  2. div {width:10px; height:10px; background:red; position:absolute;}
  3. </style>
¸´ÖÆ´úÂë
js´úÂ룺
  1. <script>
  2. window.onload=function ()
  3. {
  4.         var aDiv=document.getElementsByTagName('div');
  5.         var i=0;
  6.         
  7.         setInterval(function(){
  8.                 for(i=aDiv.length-1;i>0;i--)
  9.                 {
  10.                         aDiv[i].style.left=aDiv[i-1].style.left;
  11.                         aDiv[i].style.top=aDiv[i-1].style.top;
  12.                 }
  13.         
  14.                 },5);
  15.         document.onmousemove=function (ev)
  16.         {
  17.                 var oEvent=ev||event;
  18.                 aDiv[0].style.left=oEvent.clientX+'px';
  19.                 aDiv[0].style.top=oEvent.clientY+'px';
  20.         };
  21. };
  22. </script>
¸´ÖÆ´úÂë
È«²¿´úÂ룺
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <style>
  5. div {width:10px; height:10px; background:red; position:absolute;}
  6. </style>
  7. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  8. <title>¸úËæÊó±êµÄDivЧ¹û</title>
  9. <script>
  10. window.onload=function ()
  11. {
  12.         var aDiv=document.getElementsByTagName('div');
  13.         var i=0;
  14.         
  15.         setInterval(function(){
  16.                 for(i=aDiv.length-1;i>0;i--)
  17.                 {
  18.                         aDiv[i].style.left=aDiv[i-1].style.left;
  19.                         aDiv[i].style.top=aDiv[i-1].style.top;
  20.                 }
  21.         
  22.                 },5);
  23.         document.onmousemove=function (ev)
  24.         {
  25.                 var oEvent=ev||event;
  26.                 aDiv[0].style.left=oEvent.clientX+'px';
  27.                 aDiv[0].style.top=oEvent.clientY+'px';
  28.         };
  29. };
  30. </script>
  31. </head>
  32. <body>
  33. <div></div>
  34. <div></div>
  35. <div></div>
  36. <div></div>
  37. <div></div>
  38. <div></div>
  39. <div></div>
  40. <div></div>
  41. <div></div>
  42. <div></div>
  43. <div></div>
  44. <div></div>
  45. <div></div>
  46. <div></div>
  47. <div></div>
  48. <div></div>
  49. <div></div>
  50. <div></div>
  51. <div></div>
  52. <div></div>
  53. <div></div>
  54. <div></div>
  55. <div></div>
  56. <div></div>
  57. <div></div>
  58. <div></div>
  59. <div></div>
  60. <div></div>
  61. <div></div>
  62. <div></div>
  63. <div></div>
  64.  
  65. </body>
  66. </html>
¸´ÖÆ´úÂë

http://www.aseoe.com/ true JSÊó±ê¸úËæÌØЧ½Ì³Ì http://www.aseoe.com/show-12-85-1.html report <£¿php echo strlen($content) / 2; ?> JavaScriptÊó±ê¸úËæÌØЧʹÓÃ:Õâ¸öÒ»¸öºÜ¼òµ¥µÄÊó±êµã»÷¸úËæ°¸Àý£¬Õâ¸öЧ¹û²¢Ã»Óдó¼ÒÏëÏñµÄÄÇôÉñÆ棬¾ÍÁ½¸öÊôÐÔ£»¾ßÌå´úÂëÈçÏ£º<!DOCTYPE html PUBLIC "- W3C DTD XHTML 1 0 Transitional EN" "http
TAG:JS Êó±ê ¸úËæ ÌØЧ
±¾Õ¾»¶Ó­ÈκÎÐÎʽµÄתÔØ£¬µ«ÇëÎñ±Ø×¢Ã÷³ö´¦£¬×ðÖØËûÈËÀͶ¯³É¹û
תÔØÇë×¢Ã÷£º ÎÄÕÂתÔØ×Ô£º°®Ë¼×ÊÔ´Íø http://www.aseoe.com/show-12-85-1.html

[Ç°¶Ë²å¼þÍƼö] Plugin

1 2 3 4
  • jQueryʵÏÖÖð×ÖÖð¾äÏÔʾ²å¼þl-by-l.min.js
  • jQuery´ø·½Ïò¸ÐÖªµÄÊó±ê»¬¹ýͼƬ±ß¿òÌØЧ²å¼þ
  • jQuery HotKeys¼àÌý¼üÅÌ°´ÏÂʼþkeydown²å¼þ
  • ÏìӦʽÎÞÏÞÂÖ²¥jQueryÐýתľÂí²å¼þ
ÏìӦʽÎÞÏÞÂÖ²¥jQueryÐýתľÂí²å¼þ
webÇ°¶Ë¿ª·¢
°®Ë¼×ÊÔ´Íø Copyright 2012-2014 Www.Aseoe.Com All rights reserved.(½úICP±¸13001436ºÅ-1)