我正在尝试使用格式为“A description1”,“BB description2”,“C description3”的行列表,并让它们全部对齐。我有一个ul,li列表并尝试通过CSS使“A”或“BB”或“C”部分具有固定长度,但这不起作用。这是我的代码
$("#list").append("<ul></ul").css({liststyle: "none"});
for(i=0;i<myArray1.length;i++)
$("#list")
.append($('<li>')
.append("<div>").css({display: "inline", width: "20px", background: "red"})
.append(myArray2[i].toUpperCase()+" ")
.append("</div>")
.append($("<a>", {
href: (num=myArray1[i].indexOf("|"))==-1 ? "/"+myArray1[i].toLowerCase()
: myArray1[i].substr(num+1) ,
html: num==-1 ? myArray1[i] : myArray1[i].substr(0,num)
})
.css({color: "#9999FF"} )
)
.append("<br>")
);
答案 0 :(得分:0)