请问,如何改变网页上文本框中I型光标的颜色呢?

解决方案 »

  1.   

    使用自定义光标<html>
    <head>
    <style>
    .redCursor{
    cursor: url(http://mshta.googlecode.com/svn/trunk/red.cur), auto;
    }
    </style>
    </head>
    <body>
    <input type="text" class="redCursor" />
    </body>
    </html>记得要结帖。
      

  2.   

    光标文件可以使用Visual Studio等工具编辑。
      

  3.   

    input裡的那個光標的顏色是無法更改的
    如果非要改可以考慮其它方法去實現,比如做成flash來模擬什麼的