jquery写css样式方法如下:一般要在页面初始化的时候就要加载样式,所以使用ready()方法
$(document).ready(function(){
$("table tr td").css({
"height":"25px",
})
$("span").css({
"color":"#337ab7",
"font-size":"13px",
});
});