<small id='Hwwb1'></small><noframes id='Hwwb1'>

      <legend id='Hwwb1'><style id='Hwwb1'><dir id='Hwwb1'><q id='Hwwb1'></q></dir></style></legend>
    1. <i id='Hwwb1'><tr id='Hwwb1'><dt id='Hwwb1'><q id='Hwwb1'><span id='Hwwb1'><b id='Hwwb1'><form id='Hwwb1'><ins id='Hwwb1'></ins><ul id='Hwwb1'></ul><sub id='Hwwb1'></sub></form><legend id='Hwwb1'></legend><bdo id='Hwwb1'><pre id='Hwwb1'><center id='Hwwb1'></center></pre></bdo></b><th id='Hwwb1'></th></span></q></dt></tr></i><div id='Hwwb1'><tfoot id='Hwwb1'></tfoot><dl id='Hwwb1'><fieldset id='Hwwb1'></fieldset></dl></div>
          <bdo id='Hwwb1'></bdo><ul id='Hwwb1'></ul>
        <tfoot id='Hwwb1'></tfoot>
      1. 如果未选择日期,如何防止 bootstrap-datepicker 从输入中清除现有值?

        How do you prevent bootstrap-datepicker from clearing existing value from input if no date is selected?(如果未选择日期,如何防止 bootstrap-datepicker 从输入中清除现有值?)
        <tfoot id='np1kC'></tfoot>
      2. <i id='np1kC'><tr id='np1kC'><dt id='np1kC'><q id='np1kC'><span id='np1kC'><b id='np1kC'><form id='np1kC'><ins id='np1kC'></ins><ul id='np1kC'></ul><sub id='np1kC'></sub></form><legend id='np1kC'></legend><bdo id='np1kC'><pre id='np1kC'><center id='np1kC'></center></pre></bdo></b><th id='np1kC'></th></span></q></dt></tr></i><div id='np1kC'><tfoot id='np1kC'></tfoot><dl id='np1kC'><fieldset id='np1kC'></fieldset></dl></div>

            <small id='np1kC'></small><noframes id='np1kC'>

                <tbody id='np1kC'></tbody>
              <legend id='np1kC'><style id='np1kC'><dir id='np1kC'><q id='np1kC'></q></dir></style></legend>
                  <bdo id='np1kC'></bdo><ul id='np1kC'></ul>
                • 本文介绍了如果未选择日期,如何防止 bootstrap-datepicker 从输入中清除现有值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我有一个用 php 预填充用户出生日期的 div:

                  <label for="dob">出生日期</label><input type="text" class="form-control" id="dob" name="dob" value="<?php $date = new DateTime($this->swimmers->dob);echo $date->format('d/m/Y');?>"><span class="input-group-addon"><i class="glyphicon glyphicon-th"></i></span>

                  javascript:

                  Bootstrap 已设置并正常工作,但是,当dob"输入在没有进行日期选择的情况下获得和失去焦点时,它会清除预先填充的值.

                  但是,如果通过日期选择器选择了日期,然后输入获得和失去焦点,则不会发生这种情况.

                  如果有人点击,如何将预先填充的值保留在字段中?

                  第一次选择日期时,它会清除预先填充的值,但在您第二次选择日期之前不会插入所选日期.

                  更新:工作代码更新!

                  解决方案

                  没有更多的例子无法确定,但问题可能在于 $this->swimmers->dob 您提供给输入的字符串未被 bootstrap-datepicker 识别为日期格式.您可以通过将 data-date-format 属性添加到您的输入来定义它使用的日期格式.

                  例如,如果您使用的是 MySQL 格式的日期或 PHP 的 DateTime 对象和 $date->format('Y-m-d'),您可以使用:

                  <input type="text" class="form-control" id="dob" name="dob" value="<?php echo $this->swimmers->dob;?>"data-date-format="yy-mm-dd"><span class="input-group-addon"><i class="glyphicon glyphicon-th"></i></跨度>

                  I have have a div with a user's date of birth pre-populated with php:

                  <div id="datepicker" class="input-group date">
                      <label for="dob">Date of Birth</label> <input type="text" class="form-control" id="dob" name="dob" value="<?php $date = new DateTime($this->swimmers->dob); echo $date->format('d/m/Y');?>"><span class="input-group-addon"><i class="glyphicon glyphicon-th"></i></span>
                  </div>
                  

                  The javascript:

                  <script>     
                      $('.container .input-group.date').datepicker({
                      startDate: "01/01/1900",
                      endDate: "01/01/2100",
                      format: "dd/mm/yyyy",
                      autoclose: true,
                      todayHighlight: true
                      });
                  </script>
                  

                  Bootstrap is setup and working correctly however, when the "dob" input gets and loses focus without making a date selection it clears the value that was pre-populated.

                  This however doesn't happen if a date has been selected via the datepicker and then the input gets and loses focus.

                  How can the pre-populated value be kept in the field if someone clicks in it?

                  Edit: The first time you make a date selection, it clears the pre-populated value but doesn't insert the selected date until you make a date selection a second time.

                  Update: Working code updated!

                  解决方案

                  Can't tell for sure without more of an example but the problem is probably that the $this->swimmers->dob string you are giving to the input is not recognised as a date format by bootstrap-datepicker. You can define the date format it uses by adding the data-date-format attribute to your input.

                  For example if you were using a MySQL formatted date or PHP's DateTime object with $date->format('Y-m-d') you could use:

                  <div id="datepicker" class="input-group date">
                      <input type="text" class="form-control" id="dob" name="dob" value="<?php echo $this->swimmers->dob;?>" data-date-format="yy-mm-dd"><span class="input-group-addon"><i class="glyphicon glyphicon-th"></i></span>
                  </div>
                  

                  这篇关于如果未选择日期,如何防止 bootstrap-datepicker 从输入中清除现有值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以
                  PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的
                  mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)
                  Laravel Gmail Configuration Error(Laravel Gmail 配置错误)
                  Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)
                  Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)

                  <small id='bvL9x'></small><noframes id='bvL9x'>

                    <bdo id='bvL9x'></bdo><ul id='bvL9x'></ul>
                    <i id='bvL9x'><tr id='bvL9x'><dt id='bvL9x'><q id='bvL9x'><span id='bvL9x'><b id='bvL9x'><form id='bvL9x'><ins id='bvL9x'></ins><ul id='bvL9x'></ul><sub id='bvL9x'></sub></form><legend id='bvL9x'></legend><bdo id='bvL9x'><pre id='bvL9x'><center id='bvL9x'></center></pre></bdo></b><th id='bvL9x'></th></span></q></dt></tr></i><div id='bvL9x'><tfoot id='bvL9x'></tfoot><dl id='bvL9x'><fieldset id='bvL9x'></fieldset></dl></div>

                      <tbody id='bvL9x'></tbody>

                  • <legend id='bvL9x'><style id='bvL9x'><dir id='bvL9x'><q id='bvL9x'></q></dir></style></legend>
                    • <tfoot id='bvL9x'></tfoot>