cordova 如何动态引入背景色

qnakjoqk  于 2023-10-24  发布在  其他
关注(0)|答案(4)|浏览(142)

我正在制作一个Android应用程序与PhoneGap的帮助下。请帮助我,我如何才能使背景颜色动态
在HTML5中:-

<div data-role="page">
    <div data-role="content" >
        <div class="my_body1">      
            <ul id="table_list_id"></ul>
        </div>
    </div>
</div>

在CSS3中:-

.my_body1 ul li {
    float: left;
    list-style-type: none;
    border: 2px solid #a1a1a1;
    padding: 5px 5px;
    text-align: center;
    width: 120px;
    border-radius: 5px;
    margin: 1%;
    box-shadow: 5px 5px 5px #888888;
}

.my_body1 ul {
    width: 100%;
}

.my_body1 ul li a {
    text-decoration: none;
    color: #525252;
}

在jQuery中:-

function callXMLConnection() {
    $("#table_list_id").empty();
    $.support.cors = true;
    $.ajax({
        type: "GET",
        url: "table.html",
        contentType: "text/xml",
        dataType: "xml",
        data: "",
        cache: false,
        processData: false,
        crossDomain: true,
        success: function (data) {
            $(data).find('xyz').each(function () {
                var title = $(this).find('title').text();
                var status = $(this).find('status').text();
                if (status == 'vacant') {
                    var scripts = "<li><a href='#'>" + title + "</a></li>"
                    $("#table_list_id").append(scripts).trigger('create');
                }
                else if (status == 'occupied') {
                    var scripts = "<li><a href='#' >" + title + "</a></li>"
                    $("#table_list_id").append(scripts).trigger('create');
                }
            });
        }

    });
}
$(document).unbind('pageinit').bind('pageinit', function () {
    callXMLConnection();
});

我想要的背景颜色时,状态是空的,那么它应该是绿色,当状态被占用,那么它应该是红色。
请帮帮我

dpiehjr4

dpiehjr41#

这可能是一行有用的代码,可以使用jQuery设置背景颜色。

$("#table_list_id").css("background-color","YOUR COLOR")
byqmnocz

byqmnocz2#

要使用jQuery通过设置CSS属性来设置背景颜色,可以使用以下代码:

$("#table_list_id").css("background-color","YOUR COLOR")
flmtquvp

flmtquvp3#

尝试使用css,例如,

var scripts='';
if(status == 'vacant'){              
    scripts = "<li style='background-color:green'><a href='#'>"+title+"</a></li>";
}  
else if(status == 'occupied'){  
    scripts = "<li style='background-color:red'><a href='#'>"+title+"</a></li>";
}
if(scripts){
   $("#table_list_id").append(scripts)
                      .trigger('create');
}

**或者,**您可以创建statusclass,如,
CSS

.vacant{background-color:green} /* green background for vacant class */
.occupied{background-color:red} /* red background for occupied class */

脚本

......
    var status = $(this).find('status').text();
    var scripts = "<li class='"+status+"'><a href='#'>" + title + "</a></li>";
    $("#table_list_id").append(scripts).trigger('create');

这是一种甜蜜的感觉

9wbgstp7

9wbgstp74#

感谢你的帮助.
以下是我自己的答案,在jQuery中:

$(data).find('xyz').each(function () {
            var title = $(this).find('title').text();
            var status = $(this).find('status').text();
            if (status == 'vacant') {
                var scripts = "<li style='background:#00FF66'><a href='#'>" + title + "</a></li>"
                $("#table_list_id").append(scripts).trigger('create');
            }
            else if (status == 'occupied') {
                var scripts = "<li style='background:#FF0000'><a href='#' >" + title + "</a></li>"
                $("#table_list_id").append(scripts).trigger('create');
            }
});

相关问题