<p>段落文本1<span></span></p>
after()
$("p").after( \'<!--插入到p元素之后的位置-->\' );
before()
$("p").before( \'<!--插入到p元素之前的位置-->\' );
append()方法是指在后面插入内容
$("p").append( \'<!--插入到p元素内部的末尾位置-->\' );
html()和innerHTML()是会覆盖里面的内容
var inforhtml; inforhtml +=\' <tr> <th width="14%" class="t_center">地区</th> <th colspan="7">会议室</th> </tr>\'; inforhtml += "<td width=\'14%\' class=\'t_center\' id=\'row"+areaId+"\' rowspan="+rows+">"+areaName+"</td>";
$(\'.meeting_content_tab\').html(inforhtml);