为什么下面的代码没有返回值?
<input type="time" id="hora" style="margin: 0 auto;" class="button button-block button-stable">
JS:
var hora = document.getElementById('hora').innerHTML;
console.log(hora);
打印“”
答案 0 :(得分:3)
为什么下面的代码没有返回值?
由于输入元素没有innerHTML
,因此它们具有value
:
var hora = document.getElementById('hora').value;
console.log(hora);