1

我有一个动态生成的按钮列表......

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。

4

2 回答 2

2

首先,创建一个自定义类,例如.custom-class

CSS:请注意,这!important对于覆盖 JQM 默认样式至关重要。

.custom-class { background-color: red !important; }

代码:

查找所有具有[data-table_id]属性的按钮,比较值并应用.custom-class

var buttons = $(document).find('a[data-table_id]');

$.each(buttons, function () {
 $(this).removeClass('custom-class');
 if ($(this).attr('data-table_id') == user_id) {
  $(this).addClass('custom-class');
 }
});

类似的演示

于 2013-04-28T20:25:34.177 回答
0

尝试这个

$('.tbl').find("[data-table_id='"+active[0]+"']").css('background-color', 'red');

您正在尝试像这样分配背景颜色

$('.tbl').find("[data-table_id='"+active[0]+"']").css('backgroundColor', 'red');

在 jquery 你需要使用背景颜色而不是背景颜色

于 2013-04-28T09:37:38.503 回答