html方法和text方法 //html:innerHTML text:innerText console.log($("div").html());//<h3>我是標題</h3> console.log($("div").text());//我是標題 $("div").text("<p>我是文本< ...
html方法和text方法
//html:innerHTML text:innerText console.log($("div").html());//<h3>我是標題</h3> console.log($("div").text());//我是標題
$("div").text("<p>我是文本</p>");
$("div").html("<p>我是文本</p>");