如何使用jquery mobile更改日期框中的背景颜色或数字。?

时间:2013-07-15 12:16:35

标签: jquery jquery-mobile

我想更改背景颜色或日期框中的数字。 Here is my fiddle

的JavaScript / jQuery的

$(document).on('click', '#Cancel', function() {
   $("#AddButton").text('Add');
   $(".caseName_h").attr("readonly", false);
    $.mobile.changePage($("#Home"),{transition:'none'});
});

截图

enter image description here

2 个答案:

答案 0 :(得分:2)

您必须定位三个输入的特定元素:

<强> Here is a demo.

CSS

.ui-datebox-dboxin .ui-block-a > input {
    background-color:red;
}
.ui-datebox-dboxin .ui-block-b > input {
    background-color:blue;
}
.ui-datebox-dboxin .ui-block-c > input {
    background-color: green;
}

enter image description here

Demo version with formatted and colored text

答案 1 :(得分:0)

是否要更改所选日期输入字段或日期框本身的颜色?

Please refer to this link,可以设置inputTheme属性,以满足您的需求。