大哥,我要的是用鼠标能够在网页上画出线条!谢谢!急用!用javascript如何实现?

解决方案 »

  1.   

    大哥,我要的是用鼠标能够在网页上画出线条!谢谢!急用!用javascript如何实现?
      

  2.   

    风云舞《VML极道教程》+FlashVml3.0中/英文版联合发布
    http://community.csdn.net/Expert/TopicView1.asp?id=3810715
      

  3.   

    大哥,我要的是用鼠标能够在网页上画出线条!谢谢!急用!用javascript如何实现?要源代码!
      

  4.   

    <html xmlns:vml>
    <style>
    vml\:*{behavior:url(#default#VML);}
    </style>
    <script>
    var x,y;
    document.onmousedown=function()
    {
      x=event.clientX;
      y=event.clientY ;
    }
    document.onmouseup=function()
    {  document.body.innerHTML+=('<vml:line strokeweight="2px" strokecolor="red" from="'+x+','+y+'" to="'+event.clientX+','+event.clientY+'"/>');
    }
    </script>
    <body></body>