search

Home  >  Q&A  >  body text

html5 - jquery 如何获取h5 date 选择后的时间

jquery 如何获取原生h5 date 选择后的时间

<input type="date" id="start" />

选择日期如何console.log()输出,不需要再点其它按钮,
原生的h5 date有这个方法不

ringa_leeringa_lee2769 days ago383

reply all(1)I'll reply

  • 伊谢尔伦

    伊谢尔伦2017-04-17 13:31:48

    $('input').on('input propertychange',function(){

    console.log($(this).val());

    })

    reply
    0
  • Cancelreply