2018年6月4日

js反选

摘要: 反选 阅读全文
posted @ 2018-06-04 10:57 革命军总部 阅读(121) 评论(0) 推荐(0)

js五星评分

摘要: 暂无评价... 阅读全文
posted @ 2018-06-04 09:45 革命军总部 阅读(129) 评论(0) 推荐(0)
2018年6月1日

js获取元素下标

摘要: 1 2 3 阅读全文
posted @ 2018-06-01 09:17 革命军总部 阅读(13690) 评论(0) 推荐(0)
2018年5月24日

jQuery插件初级练习5答案

摘要: html: $.kafei.fontsize($("p"),"30px").html("123")jQuery: $.kafei={ fontsize:function(obj,value){ obj.css("font-size",value... 阅读全文
posted @ 2018-05-24 21:32 革命军总部 阅读(119) 评论(0) 推荐(0)

jQuery插件初级练习5

摘要: 456 阅读全文
posted @ 2018-05-24 21:30 革命军总部 阅读(61) 评论(0) 推荐(0)

jQuery插件初级练习4答案

摘要: html: $("p").log().css("color","red") jQuery: $.fn.extend({ log: function() { var date = new Date() var year = date.getFul... 阅读全文
posted @ 2018-05-24 21:30 革命军总部 阅读(105) 评论(0) 推荐(0)

jQuery插件初级练习4

摘要: 阅读全文
posted @ 2018-05-24 21:28 革命军总部 阅读(79) 评论(0) 推荐(0)

jQuery插件初级练习3答案

摘要: html: $("p").fontcolor().html("qaq")jQuery: $.fn.extend({ fontcolor:function(){ this.css("font-size","30px").css("color","blue"... 阅读全文
posted @ 2018-05-24 21:28 革命军总部 阅读(140) 评论(0) 推荐(0)

jQuery插件初级练习3

摘要: 456 阅读全文
posted @ 2018-05-24 21:25 革命军总部 阅读(99) 评论(0) 推荐(0)

jQuery插件初级练习2答案

摘要: html: $.font($("p"),"30px").html("变化了")jQuery: $.extend({ font:function(obj,value){ obj.css("font-size",value) retur... 阅读全文
posted @ 2018-05-24 21:24 革命军总部 阅读(75) 评论(0) 推荐(0)