提问人:user3653474 提问时间:10/22/2023 最后编辑:Mister Jojouser3653474 更新时间:10/22/2023 访问量:55
日期选择器在模态 jquery 中不起作用
Date picker not working inside modal jquery
问:
我正在使用这个日期字段;在简单的 HTML 页面上,它正在工作
if ($('.datepicker').length) {
$(".datepicker").datepicker({
minDate: 0
});
}
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.13.2/themes/base/jquery-ui.min.css" integrity="sha512-ELV+xyi8IhEApPS/pSj66+Jiw+sOT1Mqkzlh8ExXihe4zfqbWkxPRi8wptXIO9g73FSlhmquFlUOuMSoXz5IRw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.13.2/jquery-ui.min.js" integrity="sha512-57oZ/vW8ANMjR/KQ6Be9v/+/h6bq9/l3f0Oc7vn6qMqyhvPd1cvKBRWWpzu0QoneImqr2SkmO4MSqU+RpHom3Q==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<input class="datepicker" type="text" name="pickup_date" id="pickup_date" value="" placeholder="Select Date">
但是在模态上它不起作用
我试过了
$('#myModal').on('shown.bs.modal', function (e) {
$('.date').datepicker();
});
$(document).on('click', "#openbtn", function( ){
$('#exampleModal').modal('show');
setTimeout(function () {
if($('.datepicker').length){
$( '.datepicker' ).datepicker();
}
}, 500);
但它不起作用
答:
0赞
Sahab
10/22/2023
#1
希望这能有所帮助
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script>
$(document).ready(function() {
if ($('.datepicker').length) {
$(".datepicker").datepicker({
minDate: 0
});
}
$('#exampleModal').modal('show');
});
</script>
<!-- Trigger button to open the modal -->
<button type="button" data-toggle="modal" data-target="#exampleModal">
Open Modal
</button>
<!-- The Modal -->
<div class="modal" id="exampleModal">
<div class="modal-dialog">
<div class="modal-content">
This is the modal content.
<input class="datepicker" type="text" name="pickup_date" id="pickup_date" value="" placeholder="Select Date">
</div>
</div>
</div>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.13.2/themes/base/jquery-ui.min.css" integrity="sha512-ELV+xyi8IhEApPS/pSj66+Jiw+sOT1Mqkzlh8ExXihe4zfqbWkxPRi8wptXIO9g73FSlhmquFlUOuMSoXz5IRw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.13.2/jquery-ui.min.js" integrity="sha512-57oZ/vW8ANMjR/KQ6Be9v/+/h6bq9/l3f0Oc7vn6qMqyhvPd1cvKBRWWpzu0QoneImqr2SkmO4MSqU+RpHom3Q==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
评论
<dialog>
<dialog>