jQuery
jQuery有4种选择器:
1.元素选择器$(document).ready(function(){
$("button").click(functino(){
$("p").hide();
});;
});
2.id选择器
$(document).ready(function(){
$("button").click(function(){
$("#id").hide();
});
})
3.class选择器
$(document).ready(function(){
$("button").click(function(){
$(.class).hide();
});
});
总结很重要哦 方法得当,坚持会有奇迹哦