使用jQuery将日期添加到现有文本附近的文本区域中

时间:2016-04-26 13:04:06

标签: jquery

我的文字区域下面有日期输入:

<textarea style="height:50px" class="form-control" id="one" name="one" placeholder="18 - 3rd Molar"><?php echo $resTeeth['one'] ?>
</textarea>
<input type="date" id="onee" class="form-control"/>

我需要使用jQuery来检测日期值的更改,并将其添加到当前文本区域,靠近文本区域内的现有信息:

enter image description here

如图所示,如果我选择了日期,我需要添加内部文字区域并在文字附近添加日期crown, change #2 - day/month/year

我尝试了以下内容:

$(document).ready(function()
{
  $("#onee").on('change', function()
  {
    var val = $("#onee").val();
    //Here can't know how to continue
  });
});

1 个答案:

答案 0 :(得分:1)

试试这个:

$("#onee").on('change', function()
  {
    var val = $("#onee").val();
    $('#one').val($('#one').val() + " " + val);
  });