<div id="html1"></div>
<div id="html2"></div>
$("#html1").html("<h2>上海</h2>") // 可以识别标签
$("#html2").html("北京")
?
const html1 = $("#html1").html()
const html2 = $("#html2").html()
console.log(html1)
console.log(html2)
?
?
<div id="text1"></div>
<div id="text2"></div>
$("#text1").text("南京")
$("#text2").text("<h2>南京</h2>") // 不识别标签
?
const text1 = $("#text1").text()
const text2 = $("#text2").text()
console.log(text1)
console.log(text2)
?
?
<input type="text" id="username" value="123">
$("#username").val("1234")
?
const val1 = $("#username").val()
console.log(val1)