博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JQuery------实现鼠标点击和滑动不同效果
阅读量:5864 次
发布时间:2019-06-19

本文共 740 字,大约阅读时间需要 2 分钟。

如图:

代码:

html

      @foreach (Brand item in ViewBag.Brand)  {    
  • @item.name
  •   }

js

//品牌鼠标移动$(".li-brand").hover(function () {  var b = $(this).css("fontWeight");  if (b.indexOf("bold") != -1) {    return false;  }  $(this).css({ "color": "red", "text-decoration": "underline" });}, function () {  var b = $(this).css("fontWeight");  if (b.indexOf("bold") != -1) {    return false;  }  $(this).css({ "color": "#666", "text-decoration": "none" });});//品牌点击$(".li-brand").click(function () {  $(this).css({ "color": "green", "fontWeight": "bold", "text-decoration": "none" });  $(this).prevAll("li").css({ "color": "#666", "fontWeight": "normal" });  $(this).nextAll("li").css({ "color": "#666", "fontWeight": "normal" });});

 

转载地址:http://egunx.baihongyu.com/

你可能感兴趣的文章
Linux 进程中 Stop, Park, Freeze【转】
查看>>
Spark修炼之道(基础篇)——Linux大数据开发基础:第九节:Shell编程入门(一)...
查看>>
Duplicate Symbol链接错误的原因总结和解决方法[转]
查看>>
适配器模式
查看>>
刨根问底区块链 —— 基础篇
查看>>
php 直接调用svn命令
查看>>
建立低权限的ftp帐号
查看>>
htpasswd
查看>>
Android窗口机制(三)Window和WindowManager的创建与Activity
查看>>
Android 编译出错解决
查看>>
iOS--The request was denied by service delegate (SBMainWorkspace) for reason:
查看>>
Android 打开WIFI并快速获取WIFI的信息
查看>>
【IOS开发】GDataXML解析XML
查看>>
Iptables
查看>>
GridView多行多列合并单元格(指定列合并)
查看>>
什么是DDOS攻击?怎么防御?
查看>>
状态模式(State Pattern)
查看>>
log4j日志框架学习
查看>>
function 与 => 的区别
查看>>
TYVJ P1077 有理逼近 Label:坑,tle的好帮手 不懂
查看>>