单标签

单表签用value属性
var input = document.querySelector(“input”)
document.write(input.value)

双标签

双标签用innerHTML属性
var p = document.querySelector(“p”)
document.write(input.innerHTML)