What the difference between text() and html() functions in jQuery ?
$(\"#div\").html(\'Linkhello\
var v = "全名";
$("#div").html(v); //display as "全名"
$("#div").text(v); //display as "全名"
text() – This method sets or returns the text content of elements selected. html() – This method sets or returns the content of elements selected. Refer example here : https://www.tutorialspoint.com/online_jquery_editor.php