我有一个动态生成的按钮列表......
var output="";
var active;
var x;
var i;
var user_id=localStorage.get('user_id');#
for(x=0;x<dynamic_count;x++)
{
output+="<div class='tbl' data-role='button' data-table_id='"+(x+1)+"'>";
output+="<p class='center_text'>"+(x+1)+</p>";
output+="<div>";
}
$('.table_holder').html(output).trigger('create');
//active and active_count come from AJAX request (I have missed this bit our of the code..active[0]=a table number where as active[1]= s user_id
for(i=0;i<active_count;i++)
{
if(active[1]==user_id)
{
$('.tbl').find("[data-table_id='"+active[0]+"']").css('backgroundColor', 'red');
}
}
不幸的是,这对所需元素的背景颜色没有影响。我不确定这是否是我的选择器代码、我的 css 代码或我的 jQuery Mobile 实现的问题。
我注意到,当使用 jQuery Mobile 动态添加需要样式的元素时,我需要使用该trigger('create')
方法来应用 css。
这显然会用原始的 jQuery css 覆盖任何修改后的 css。