-5
此代碼在firefox n chrome中運行良好,但不在Internet Explorer中運行。 請給我一些解決方案。我的自定義光標代碼在IE中不起作用
<style>
div.cursor_green
{
cursor: url(pncl_green.png), auto;
}
</style>
此代碼在firefox n chrome中運行良好,但不在Internet Explorer中運行。 請給我一些解決方案。我的自定義光標代碼在IE中不起作用
<style>
div.cursor_green
{
cursor: url(pncl_green.png), auto;
}
</style>
你應該轉換你的圖像在cur格式工作很好。
<style>
div.cursor_green
{
cursor: url(pncl_green.cur), auto;
}
</style>
感謝您的回答。 – user3569089
將CSS與jQuery混合使用!!! –