我正在尝试做一件简单的事情,也许我错过了一些东西:
var span = $(document.createElement("span")); // Create a span
var img = new Image(); // Create an image and set source
img.src = config.graph_url + member.facebook_id + "/picture?width=24&height=24";
span.append($(img)); // Add the image inside the span
我怎样才能得到 html <span><img src="_SOURCE_"/></span>
?span.html()
输出<img src="_SOURCE_"/>
。