Тип ввода даты - PullRequest
       15

Тип ввода даты

0 голосов
/ 01 апреля 2020

Я хочу сделать это:

С помощью кнопки управления введите тип даты, чтобы открыть календарь, чтобы выбрать дату, но поле ввода не может быть показано.
И результат выбранной даты должен быть показан в другом div (эта часть решена).

$(document).ready(function() {
  $('input[type="date"]').change(function() {

    var outputDate = (this.value);
    $("#target").text(outputDate);
  });
});
input[type="date"]{opacity:0;}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<label for="test1"  style="width:100px; height:100px; background:red;display:inline-block;">
<input id="test1" type="date" style="width:100px; height:100px;>
</label>
<p id="target"></p>

1 Ответ

0 голосов
/ 02 апреля 2020

$(document).ready(function() {
    $('input[type="date"]').change(function() {
        var outputDate = (this.value);
        $("#target").text(outputDate);
    });
});
input[type="date"]{
    opacity:1;
    position: relative;
    color: transparent;
    border: none;
    background-color: red;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    -webkit-appearance: none;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    background-color: transparent;
}

input[type="date"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type="date"]::-webkit-datetime-edit {
    opacity: 0;
    -webkit-appearance: none;
}

input[type="date"]::-webkit-clear-button {
    background: none;
    -webkit-appearance: none;
 }

label {
    position: relative;
    overflow: hidden
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<label for="test1"  style="width:100px; height:100px; background:red;display:inline-block;">
<input id="test1" type="date" style="width:100px; height:100px;">
</label>
<p id="target"></p>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...