gpt4 book ai didi

jquery - 无法使用 Bootstrap 日期选择器

转载 作者:行者123 更新时间:2023-12-01 00:02:54 24 4
gpt4 key购买 nike

我试图添加 Bootstrap date picker在输入区域上,但我无法配置它:

我用了他们的demo page生成代码并尝试过,但似乎我遗漏了一些东西,请帮我解决这个问题。

<!DOCTYPE html>
<html>
<head>
<title>Bootstrap</title>
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link href="../files/css/bootstrap.min.css" rel="stylesheet">
<link href="http://eternicode.github.io/bootstrap-datepicker/bootstrap-datepicker/css/datepicker3.css" rel="stylesheet">

<script src="../files/js/jquery.min.js"></script>
<script src="../files/js/bootstrap.js"></script>
<script src="http://eternicode.github.io/bootstrap-datepicker/bootstrap-datepicker/js/bootstrap-datepicker.js"></script>
</head>
<body>
<div class="input-group date">
<input type="text" class="form-control"><span class="input-group-addon"><i class="glyphicon glyphicon-th"></i></span>
</div>

<script>
$('#sandbox-container .input-group.date').datepicker({
format: "yyyy/mm/dd",
startDate: "2012-01-01",
endDate: "2015-01-01",
todayBtn: "linked",
autoclose: true,
todayHighlight: true
});
</script>
</body>
</html>

我还尝试使用此链接 cssjs :

最佳答案

将脚本包含标签移至脚本上方,并从选择器中删除 #sandbox-container - 它不存在。之后它就可以工作了(使用正确的网址)...

<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.3.0/js/bootstrap-datepicker.js"></script>
<script>
$('.input-group.date').datepicker({
format: "yyyy/mm/dd",
startDate: "2012-01-01",
endDate: "2015-01-01",
todayBtn: "linked",
autoclose: true,
todayHighlight: true
});
</script>

<强> jsfiddle example...

关于jquery - 无法使用 Bootstrap 日期选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22169142/

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