この中から特定の要素/パーツだけをスタイリングしたい
私のコード:-
$('input[name=\'bar_home\']').autocomplete({
delay: 0,
minLength: 3,
source: function(request, response) {
$.ajax({
url: 'index.php?route=common/home/autocomplete&filter_name=' + encodeURIComponent(request.term),
dataType: 'json',
success: function(json) {
response($.map(json, function(item) {
return {
label: item.name + ' ' + '-' + ' ' + '%' + item.price,
value: item.product_id,
}
}));
}
});
},
select: function(event, ui) {
url = 'index.php?route=product/product&product_id=' + ui.item.value;
location = url;
return false;
},
focus: function(event, ui) {
return false;
}
}
);
これらは、私がスタイリングしたい2つの要素です
'£', item.price
上記の 2 つの要素/パーツのみをスタイルしたい。この2つだけ色を変えて変えたくない、みたいな。
**item.name**
詳細が必要な場合はお知らせください。