setBackHeight() {
var backHeight = document.getElementById("serviceCommentClass");
var heightStr =
this.backHeight + this.myLawyer.lawyerEvaluatels.length + "rem";
console.log("heightStr:", heightStr);
//第一种:设置某个具体的值
backHeight.style.height = heightStr;
//第二种:用cssText
div.style.cssText='width:600px;height:250px;border:1px red solid;text-align: center;line-height: 250px;';
}
网友评论