jQuery入门及资源收集
摘要:
1.精准简单的选择对象(dom):$('#element');// 相当于document.getElementById("element")$('.element');//Class$('p');//html标签$("form input");//子对象$("div,span,p.myClass");//同时选择多种对象$("tr:odd").css("background-color", ... 阅读全文
posted @ 2010-05-27 21:07 yaoshiyou 阅读(332) 评论(0) 推荐(0) 编辑