if(val[2]==="Dir"){
var newPath = val[6]+"\\"+val[0];
console.log(newPath);
stringDir += '<p class="dirClass" current_directory="'+newPath+'" >' + val[0]+'</p>';}
$(this).after(stringDir);
因为我有ap标签而且我使用了after()到p。问题是使用这个,每个p都在它的父p后面,所以我不能给它的孩子任何填充。我真的想要父子对齐,这是每个孩子的一些左边填充。