我正在尝试使用genericInventory类列出使用SteamBot的项目,我可以列出项目的所有项目和名称,但不能列出项目的质量或浮动。
$(function() {
$(".frame").on("click", function() {
if ($(this).hasClass("expanded")){
$(".frame").show();
$(this).removeClass("expanded");
} else {
$(".frame").hide();
$(this).show()
$(this).addClass("expanded");
}
});
});