这是我的代码
var pollPercent = function() {
$("#poll li").each(function(){
var percent = $(this).attr("data-percent");
var width = (percent / 100) * 1000;
var el = $(this);
$("head").append("<style>" + el + ":before {width: " + width + "px;}</style>");
});
};
pollPercent();
那么我如何指向每个 li 并更改其“伪元素之前”