如何让eonasdan datetimepicker css正常工作?
How to make eonasdan datetimepicker css work properly?
我正在我的项目中实现 eonasdan 的 datetimepicker。我在使 CSS 按预期工作时遇到问题。
我从https://github.com/Eonasdan/bootstrap-datetimepicker下载了datepicker JS和CSS,分别命名为bootstrap-datepicker.js和bootstrap-datepicker.css。
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/momentjs/2.14.1/moment.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="js/bootstrap-datepicker.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" media="all" href="css/bootstrap-datetimepicker.css">
<link rel="stylesheet" type="text/css" media="all" href="css/formmail.css">
JavaScript函数:
<script>
$(function () {
$('#datetimepicker1').datetimepicker();
});
</script>
在 HTML 文件中:
<td>Incident Date & Time</td>
<td colspan="2">
<div class='input-group date' id='datetimepicker1'>
<input type='text' class="form-control" name="datetime" size="90">
<span class="input-group-addon">
<span class="glyphicon glyphicon-calendar"></span>
</span>
</div>
我已经按照 github 页面中的步骤进行操作,但我无法获得 desired appeareance of the datepicker but instead it appears like this。感谢任何帮助。
确保您已设置 CSS table/tr/td
请在您的工作中更改table
<table> this is your work </table>
...
<style>
table,tr,td{
border: 1px solid black;
}
</style>
到...
<div class="data"><table> this is your work </table></div>
...
<style>
div.data table,tr,td{
border: 1px solid black;
}
</style>
那是因为 Bootstrap 3 Datepicker
为日期选择器创建了 table
元素 像这样
然后你设置 CSS 没有 父级定义,这意味着它使用该页面中的所有 table/tr/td
标签
我正在我的项目中实现 eonasdan 的 datetimepicker。我在使 CSS 按预期工作时遇到问题。
我从https://github.com/Eonasdan/bootstrap-datetimepicker下载了datepicker JS和CSS,分别命名为bootstrap-datepicker.js和bootstrap-datepicker.css。
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/momentjs/2.14.1/moment.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="js/bootstrap-datepicker.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" media="all" href="css/bootstrap-datetimepicker.css">
<link rel="stylesheet" type="text/css" media="all" href="css/formmail.css">
JavaScript函数:
<script>
$(function () {
$('#datetimepicker1').datetimepicker();
});
</script>
在 HTML 文件中:
<td>Incident Date & Time</td>
<td colspan="2">
<div class='input-group date' id='datetimepicker1'>
<input type='text' class="form-control" name="datetime" size="90">
<span class="input-group-addon">
<span class="glyphicon glyphicon-calendar"></span>
</span>
</div>
我已经按照 github 页面中的步骤进行操作,但我无法获得 desired appeareance of the datepicker but instead it appears like this。感谢任何帮助。
确保您已设置 CSS table/tr/td
请在您的工作中更改table
<table> this is your work </table>
...
<style>
table,tr,td{
border: 1px solid black;
}
</style>
到...
<div class="data"><table> this is your work </table></div>
...
<style>
div.data table,tr,td{
border: 1px solid black;
}
</style>
那是因为 Bootstrap 3 Datepicker
为日期选择器创建了 table
元素 像这样
然后你设置 CSS 没有 父级定义,这意味着它使用该页面中的所有 table/tr/td
标签