This example shows how to apply different CSS styles to different tags.
<div class="easyui-panel" style="width:100%;max-width:400px;padding:30px 60px;">
<input class="easyui-tagbox" value="3" label="Add a tag" style="width:100%" data-options="
url: 'examples/tagbox/tagbox_data1.json',
method: 'get',
value: '3,4',
valueField: 'id',
textField: 'text',
limitToList: true,
prompt: 'Select a Language',
tagStyler: function(value){
if (value == 3){
return 'background:#f45448;color:#fff';
} else if (value == 4){
return 'background:#0bab4f;color:#fff';
}
}
">
</div>