要注意的當然是我等jquery菜鳥.$.text()獲取的是所有匹配元素的text,要注意的是$.text(val)會把裡面的所有東西都刪了(包括裡面的html標簽)再設置text,相當於$.html(val)。官方的說法是“Set the text contents of all matched elements.Similar to html(), but escapes HTML (replace "<" and ">" with their HTML entities).”。