gpt4 book ai didi

javascript - 同一页上两个日历的不同设计

转载 作者:太空宇宙 更新时间:2023-11-04 14:49:32 25 4
gpt4 key购买 nike

我想在同一个 .html 文件中制作两个日历,但设计不同。具体来说,我需要有不同颜色的 .ui-widget-content(日历顶部)。

我尝试向每个输入添加和标识,然后对它们进行 CSS,但它不起作用。也许我必须以其他方式将 id 或 class 添加到 datepicker 元素,而不仅仅是内联编写?那么如何在同一页面上设置不同样式的两个 JQuery UI 日历呢?

<!doctype html>
<html>
<head>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="/resources/demos/style.css">
<script>
$(document).ready(function(){
$( "#datepicker" ).datepicker();
$( "#datepicker2" ).datepicker();
});
</script>

<style>
#datepicker .ui-widget-content {
color: pink;
}
#datepicker2 .ui-widget-content {
color: green;
}
</style>
</head>
<body>

<p>Date: <input type="text" id="datepicker"></p>
<p>Date2: <input type="text" id="datepicker2"></p>

</body>
</html>

当我简单地添加没有子类或子 ID 的 CSS 时,CSS 可以正常工作,但是当我尝试为每个日历指定它时,设计不会改变。

最佳答案

您可以向特定的日期选择器添加一个类,然后使用该类覆盖它的检查代码段。

添加类使用

我添加了一个类aa

$("#datepicker2").datepicker({
beforeShow: function(input, inst) {
$(inst.dpDiv).addClass('aa');
}
});

覆盖 Css

.aa a.ui-state-default {
background: green;
}

.aa a.ui-state-default {
background: green;
}
<!doctype html>
<html>

<head>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="/resources/demos/style.css">
<script>
$(document).ready(function() {
$("#datepicker").datepicker({
beforeShow: function(input, inst) {
$(inst.dpDiv).removeClass('aa');
}
});
$("#datepicker2").datepicker({
beforeShow: function(input, inst) {
$(inst.dpDiv).addClass('aa');
}
});
});
</script>

<style>
#datepicker .ui-widget-content {
color: pink;
}

#datepicker2 .ui-widget-content {
color: green;
}
</style>
</head>

<body>

<p>Date: <input type="text" id="datepicker"></p>
<p>Date2: <input type="text" id="datepicker2"></p>

</body>

</html>

关于javascript - 同一页上两个日历的不同设计,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57429128/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com