how2j.cn

步骤 1 : 鼠标样式   
步骤 2 : 样式一览   

运行效果
<style> span{ cursor:crosshair; } </style> <span>鼠标移动到这段文字上,就看到鼠标样式变成了十字架</span>
<style>
  span{
    cursor:crosshair;
  }
</style>
 
<span>鼠标移动到这段文字上,就看到鼠标样式变成了十字架</span>


源代码
1. 双击选中单词 2. 三击选中整行 3. CTRL+F 查找 4. F8 全屏编辑,再次点击恢复
渲染中 渲染完成
效果
<!DOCTYPE html> <script src="https://how2j.cn/study/js/jquery/2.0.0/jquery.min.js"></script> <link href="https://how2j.cn/study/css/bootstrap/3.3.6/bootstrap.min.css" rel="stylesheet"> <script src="https://how2j.cn/study/js/bootstrap/3.3.6/bootstrap.min.js"></script> <script> $(function(){ $("span.effect").each(function(){ var cursorStyle=$(this).attr("cursorStyle"); $(this).css("cursor", cursorStyle); $(this).parent().siblings().first().children().first().html("cursor:"+cursorStyle); }); }); </script> <table class="table"> <tr> <td>效果</td> <td>样式</td> </tr> <tr> <td><span cursorStyle="default" class="effect">鼠标移动上来看效果</span></td> <td><span class="style"></span></td> </tr> <tr> <td><span cursorStyle="auto" class="effect">鼠标移动上来看效果</span></td> <td><span class="style"></span></td> </tr> <tr> <td><span cursorStyle="crosshair" class="effect">鼠标移动上来看效果</span></td> <td><span class="style"></span></td> </tr> <tr> <td><span cursorStyle="pointer" class="effect">鼠标移动上来看效果</span></td> <td><span class="style"></span></td> </tr> <tr> <td><span cursorStyle="e-resize" class="effect">鼠标移动上来看效果</span></td> <td><span class="style"></span></td> </tr> <tr> <td><span cursorStyle="ne-resize" class="effect">鼠标移动上来看效果</span></td> <td><span class="style"></span></td> </tr> <tr> <td><span cursorStyle="nw-resize" class="effect">鼠标移动上来看效果</span></td> <td><span class="style"></span></td> </tr> <tr> <td><span cursorStyle="n-resize" class="effect">鼠标移动上来看效果</span></td> <td><span class="style"></span></td> </tr> <tr> <td><span cursorStyle="se-resize" class="effect">鼠标移动上来看效果</span></td> <td><span class="style"></span></td> </tr> <tr> <td><span cursorStyle="sw-resize" class="effect">鼠标移动上来看效果</span></td> <td><span class="style"></span></td> </tr> <tr> <td><span cursorStyle="w-resize" class="effect">鼠标移动上来看效果</span></td> <td><span class="style"></span></td> </tr> <tr> <td><span cursorStyle="text" class="effect">鼠标移动上来看效果</span></td> <td><span class="style"></span></td> </tr> <tr> <td><span cursorStyle="wait" class="effect">鼠标移动上来看效果</span></td> <td><span class="style"></span></td> </tr> <tr> <td><span cursorStyle="help" class="effect">鼠标移动上来看效果</span></td> <td><span class="style"></span></td> </tr> </tr> <tr> <td><span cursorStyle="not-allowed" class="effect">鼠标移动上来看效果</span></td> <td><span class="style"></span></td> </tr> </table>


源代码
1. 双击选中单词 2. 三击选中整行 3. CTRL+F 查找 4. F8 全屏编辑,再次点击恢复
渲染中 渲染完成
效果


HOW2J公众号,关注后实时获知最新的教程和优惠活动,谢谢。


问答区域    
2019-03-09 cursor:auto和 cursor:text有什么区别?
lnight

cursor:auto和 cursor:text有什么区别?




4 个答案

福清平头哥
答案时间:2022-09-26
一样的

王菜菜
答案时间:2021-11-06
<style> span.a{ cursor:crosshair; } span.b{ cursor:default; } span.c{ cursor:auto; } /*auto 和 text 箭头相等*/ span.d{ cursor:pointer; } span.e{ cursor:e-resize; } /*:e-resize 和:w-resize 箭头相等*/ span.f{ cursor:ne-resize; } /*:ne-resize 和:sw-resize 箭头相等*/ span.g{ cursor:nw-resize; } /*:nw-resize 和:se-resize 箭头相等*/ span.h{ cursor:n-resize; } span.i{cursor:se-resize; } span.j{ cursor:sw-resize; } span.k{ cursor:w-resize; } span.l{ cursor:text; } span.m{ cursor:help; } span.n{ cursor:wait; } span.o{ cursor:not-allowed; } </style> <span class="a">a鼠标移动到这段文字上,就看到鼠标样式变成了十字架</span><br/> <span class="b">b鼠标移动到这段文字上,就看到鼠标样式变成了箭头</span><br/> <span class="c">c鼠标移动到这段文字上,就看到鼠标样式变成了I</span><br/> <span class="d">d鼠标移动到这段文字上,就看到鼠标样式变成了手势</span><br/> <span class="e">e鼠标移动到这段文字上,就看到鼠标样式变成了水平箭头</span><br/> <span class="f">f鼠标移动到这段文字上,就看到鼠标样式变成了右斜杠箭头</span><br/> <span class="g">g鼠标移动到这段文字上,就看到鼠标样式变成了左斜杠箭头</span><br/> <span class="h">h鼠标移动到这段文字上,就看到鼠标样式变成了垂直箭头</span><br/> <span class="i">i鼠标移动到这段文字上,就看到鼠标样式变成左斜杠箭头</span><br/> <span class="j">j鼠标移动到这段文字上,就看到鼠标样式变成右斜杠箭头</span><br/> <span class="k">k鼠标移动到这段文字上,就看到鼠标样式变成水平箭头</span><br/> <span class="l">l鼠标移动到这段文字上,就看到鼠标样式变成了l</span><br/> <span class="m">m鼠标移动到这段文字上,就看到鼠标样式变成了十字架</span><br/> <span class="n">n鼠标移动到这段文字上,就看到鼠标样式变成了等待圈圈</span><br/> <span class="o">o鼠标移动到这段文字上,就看到鼠标样式变成了箭头下面加问号</span><br/>

王菜菜
答案时间:2021-11-06
<style> span.a{ cursor:crosshair; } span.b{ cursor:default; } span.c{ cursor:auto; } span.d{ cursor:pointer; } span.e{ cursor:e-resize; } span.f{ cursor:ne-resize; } span.g{ cursor:nw-resize; } span.h{ cursor:n-resize; } span.i{cursor:se-resize; } span.j{ cursor:sw-resize; } span.k{ cursor:w-resize; } span.l{ cursor:text; } span.m{ cursor:help; } span.n{ cursor:wait; } span.o{ cursor:not-allowed; } </style> <span class="a">鼠标移动到这段文字上,就看到鼠标样式变成了十字架</span><br/> <span class="b">鼠标移动到这段文字上,就看到鼠标样式变成了箭头</span><br/> <span class="c">鼠标移动到这段文字上,就看到鼠标样式变成了I</span><br/> <span class="d">鼠标移动到这段文字上,就看到鼠标样式变成了手势</span><br/> <span class="e">鼠标移动到这段文字上,就看到鼠标样式变成了水平箭头</span><br/> <span class="f">鼠标移动到这段文字上,就看到鼠标样式变成了右斜杠箭头</span><br/> <span class="g">鼠标移动到这段文字上,就看到鼠标样式变成了左斜杠箭头</span><br/> <span class="h">鼠标移动到这段文字上,就看到鼠标样式变成了垂直箭头</span><br/> <span class="i">鼠标移动到这段文字上,就看到鼠标样式变成左斜杠箭头</span><br/> <span class="j">鼠标移动到这段文字上,就看到鼠标样式变成右斜杠箭头</span><br/> <span class="k">鼠标移动到这段文字上,就看到鼠标样式变成水平箭头</span><br/> <span class="l">鼠标移动到这段文字上,就看到鼠标样式变成了l</span><br/> <span class="m">鼠标移动到这段文字上,就看到鼠标样式变成了十字架</span><br/> <span class="n">鼠标移动到这段文字上,就看到鼠标样式变成了等待圈圈</span><br/> <span class="o">鼠标移动到这段文字上,就看到鼠标样式变成了箭头下面加问号</span><br/>

1111huan
答案时间:2019-06-01
区别是,cursor:auto 就是cursor:text 哈哈哈哈哈



回答已经提交成功,正在审核。 请于 我的回答 处查看回答记录,谢谢
答案 或者 代码至少填写一项, 如果是自己有问题,请重新提问,否则站长有可能看不到








提问之前请登陆
提问已经提交成功,正在审核。 请于 我的提问 处查看提问记录,谢谢
关于 前端部分-CSS-鼠标样式 的提问

尽量提供截图代码异常信息,有助于分析和解决问题。 也可进本站QQ群交流: 578362961
提问尽量提供完整的代码,环境描述,越是有利于问题的重现,您的问题越能更快得到解答。
对教程中代码有疑问,请提供是哪个步骤,哪一行有疑问,这样便于快速定位问题,提高问题得到解答的速度
在已经存在的几千个提问里,有相当大的比例,是因为使用了和站长不同版本的开发环境导致的,比如 jdk, eclpise, idea, mysql,tomcat 等等软件的版本不一致。
请使用和站长一样的版本,可以节约自己大量的学习时间。 站长把教学中用的软件版本整理了,都统一放在了这里, 方便大家下载: https://how2j.cn/k/helloworld/helloworld-version/1718.html

上传截图