关于 attr 和 css
$("#content").attr("style","width:50px;color:red")//设置style属性的值
$("#content").css({"width":"50px","color":"red"})//也是设置style属性的值
这二句是等价的,attr指向的是签标的属性,style就是其中属性之一,css其实就是代表style属性,也就是说:
css只能改style里的.
attr可以改元素所有的属性.id,name,style.什么都行