午後、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 ステートメントに似ています
よろしくお願いします。
アラン