下午,我想知道如何根据 Web 服务的返回值添加一个类。
$.each(result, function (index, res) {
new_record = "<tr>" +
"<th scope=\"row\" class=\"t-left\"><a href=\"editproduct.aspx?sku=" + res.sku + "\" title=\"Edit this product listing\">" + res.title + "</a></th>" +
"<td><a href=\"http://www.amazon.co.uk/dp/" + res.asin + "\" target=\"_blank\" title=\"Visit the Amazon product listing\" >" + res.asin + "</a></td>" +
"<td>" + res.sku + "</td>" +
"<td>" + res.stock + "</td>" +
"<td> £" + res.price + "</td>" +
"<td>" + res.live + "</td>" +
"</tr>";
$('#dataResults').append(new_record);
我还返回了一个值 stockUpdated,我想添加一个类来更改股票表字段的颜色,具体取决于这是否返回 true。
我不记得我以前是怎么做到的,但它类似于 if 语句
提前谢谢了。
艾伦