摘要: ``` $(".time>span").click(function(){ console.log(this); $(this).css({'color':'#03FDFC'}); //选中的效果 $(this).siblings().css({'color':'#FFF'}); //没选中的效果 }) ``` 阅读全文
posted @ 2019-05-06 10:57 QiuYuLing 阅读(420) 评论(0) 推荐(0) 编辑
摘要: ``` d3.js 的cdn地址 ``` 阅读全文
posted @ 2019-05-06 10:57 QiuYuLing 阅读(1256) 评论(0) 推荐(0) 编辑
摘要: ``` //开关切换 无状态值切换 $("#swich_op").click(function(){ console.log($(this).attr("src")); if($(this).attr("src") == "static/security_img/on.png"){ $(this).attr("src","... 阅读全文
posted @ 2019-05-06 10:55 QiuYuLing 阅读(537) 评论(0) 推荐(0) 编辑