最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Javascript added HTML value is removed when datepicker is selected - Stack Overflow

programmeradmin1浏览0评论

I have a Bootstrap modal where you can select a date. In the background, hidden fields are populated that are also submitted with the form.

The issue is that when you select the datepicker element, it removes the hidden value for some strange reason (but only the hidden values populated by the Javascript).

Datepicker JS:

var date = new Date();
date.setDate(date.getDate());

$('#datepicker').datepicker({
    format: "dd/mm/yyyy",
    startDate: date,
    autoclose: true,
});

Hidden field Populating JS:

$(function () {
    $('#appointment').on("show.bs.modal", function (e) {
        $("#request_id").val($(e.relatedTarget).data('request-id'));
    });
});

Hidden HTML element:

<input type="hidden" name="request_id" id="request_id" value="">

When the Modal box initially pops up, I can see the hidden value field is populated, but when I click the datepicker, it's removed. Why is this?

I have a Bootstrap modal where you can select a date. In the background, hidden fields are populated that are also submitted with the form.

The issue is that when you select the datepicker element, it removes the hidden value for some strange reason (but only the hidden values populated by the Javascript).

Datepicker JS:

var date = new Date();
date.setDate(date.getDate());

$('#datepicker').datepicker({
    format: "dd/mm/yyyy",
    startDate: date,
    autoclose: true,
});

Hidden field Populating JS:

$(function () {
    $('#appointment').on("show.bs.modal", function (e) {
        $("#request_id").val($(e.relatedTarget).data('request-id'));
    });
});

Hidden HTML element:

<input type="hidden" name="request_id" id="request_id" value="">

When the Modal box initially pops up, I can see the hidden value field is populated, but when I click the datepicker, it's removed. Why is this?

Share Improve this question edited Feb 26, 2017 at 22:55 VincenzoC 31.5k12 gold badges100 silver badges121 bronze badges asked Feb 24, 2017 at 16:25 user860511user860511 1
  • grab and store form values with .val(); – Lieutenant Dan Commented Mar 3, 2017 at 12:41
Add a ment  | 

2 Answers 2

Reset to default 8 +50

The issue is that show.bs.modal is fired when bootstrap datepicker is opened. So you simply have to set #request_id value only when the show.bs.modal is related to modal opening. One way you can use to get the element that fired the event is checking e.target.id value inside your handler.

Here a working sample:

$('#datepicker').datepicker({
  format: "dd/mm/yyyy",
  startDate: new Date(),
  autoclose: true,
});

$(function () {
  $('#appointment').on("show.bs.modal", function (e) {
    if( e.target.id == 'appointment'){
      $("#request_id").val($(e.relatedTarget).data('request-id'));
    }
  });
});
<link href="//cdnjs.cloudflare./ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.css" rel="stylesheet"/>
<link href="//cdnjs.cloudflare./ajax/libs/bootstrap-datepicker/1.6.4/css/bootstrap-datepicker3.css" rel="stylesheet"/>

<script src="//cdnjs.cloudflare./ajax/libs/jquery/2.1.3/jquery.js"></script>
<script src="//cdnjs.cloudflare./ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.js"></script>
<script src="//cdnjs.cloudflare./ajax/libs/bootstrap-datepicker/1.6.4/js/bootstrap-datepicker.js"></script>


<input type="hidden" name="request_id" id="request_id" value="">

<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#appointment" data-request-id="myExampleId">
  Open appointment modal
</button>

<div id="appointment" class='modal fade'>
  <div class="modal-dialog" role="document">
    <div class="modal-content">
      <div class='modal-header'>
        <button type='button' class='close' data-dismiss='modal' aria-hidden='true'>&times;</button>
        <h4 class="modal-title">Title</h4>
      </div>
      <div class="modal-body">
        <div class="form-group">
          <label for="datepicker">Date bootstrap</label>
          <input type="text" id="datepicker">
        </div>
      </div>
    </div>
  </div>
</div>

Use trusted Bootstrap-datepicker. If you using the same and making $ajax call, prevent extra values while making $ajax() by whilte listing your form values.

发布评论

评论列表(0)

  1. 暂无评论