📌  相关文章
📜  jquery 更改文本 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:56.900000             🧑  作者: Mango

代码示例6
$(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