摘要: 1. attr(name); // 参数name表示属性的名称 attr("name","value"); //单个属性设置语法 attr({name0:value0,name1:value1}); //多个属性值设置 $("#a1").attr({title:'你好',href:'http://www.baidu.com'}); removeAtt... 阅读全文
posted @ 2016-04-14 20:36 放荡不羁的春天 阅读(279) 评论(0) 推荐(0) 编辑
摘要: $(function (){ //jQuery代码 $("li:nth-child(2)").addClass("GetFocus"); //获取每个元素下的特定元素,索引号从1开始 $("li:first-child").addClass("GetFocus"); //获取每个父元素下的第一个子元素 $("li:last-child").ad... 阅读全文
posted @ 2016-04-14 14:26 放荡不羁的春天 阅读(285) 评论(0) 推荐(0) 编辑