📅  最后修改于: 2022-03-11 15:01:49.991000             🧑  作者: Mango
$(yourElement).html("New text");
//sets yourElement innerHTML to "New text"
var text = $(yourElement).html();
//html() returns the text inside yourElement if you pass no parameters