字符串转jquery对象:var tmp = $('<div>dd</div>').attr('id','bbq'); //用$符包裹起来即可jquery对象转字符串: tmp.html(); // ddtmp[0].outerHTML // <div id="bbq">ddd</div>