在index.asp点击最后帖子默认平板显示方法
分页面模板(page_index)--template.html(7)
function showlastpost(lastpoststr)
{
lastpoststr=lastpoststr.replace(/</gi,''<'');
if (lastpoststr==''$$$$''||lastpoststr=='''')
{
return(''主题:无<br>作者:无<br>日期:无'')
}
else
{
var str='''';
lastpoststr=lastpoststr.split("$");
str+=''主题:<a href="Dispbbs.asp?boardid=''+lastpoststr[7]+''&ID=''+lastpoststr[6]+''&replyID=''+lastpoststr[1]+''&skin=2" title="转到:''+lastpoststr[3]+''">'';
str+=lastpoststr[3].substring(0,10);
str+=''</a>'';
str+=''<br>作者:'';
str+=''<a href="http://www.51one.net/tobbs/dvbbs/dispuser.asp?id=''+lastpoststr[5]+''" target="_blank">''+lastpoststr[0] +''</a>'';
str+=''<br>日期:'';
str+=lastpoststr[2] +'' <a href="http://www.51one.net/tobbs/dvbbs/dispbbs.asp?Boardid=''+lastpoststr[7]+''&ID=''+ lastpoststr[6] +''&replyID='' + lastpoststr[1] +''&skin=1"><IMG border=0 src="../../{$PicUrl}lastpost.gif" title="主题:''+lastpoststr[3]+''"></a>'';
return(str)
}
}
注:skin=1 树形 skin=2 平板

