function showTweet(username) {
$("<ul/>", {
"class": "my-user-list",
html: usertweets[username].join("<li/>")
}).appendTo($("#tweets"));
}
所以我看到選擇器是針對無序列表,但逗號後面是什麼,爲什麼它在花括號?如何閱讀此功能?
我瞭解.append
部分。我不明白"class": "my-user-list"
和html: usertweets[username].join("<li/>")
做什麼。請注意,usertweets
是一個數組。
任何有識之士將不勝感激!
文檔中的所有:jQuery的創建元素W /屬性](http://api.jquery.com/jquery/#jQuery-html-attributes) – epascarello
這是jQuery的... HTTP:// API .jquery.com/jQuery /#jQuery1 –
它檢查'usertweets'對象的'username'鍵並將結果值包裹在''li'標籤(放在'ul'中)。 – Andy