js生成html的方法 js生成html文件
生成HTML的方法实在是太多了,我来讲讲我现在要讲的一个方法,想好一个从头到尾的思路,拿一个新闻系统作为实例.powered by 25175.net
假设的两个表:news(ID,title,document,time),news_content(ID,news_id,username,document,time)
文件名:我们将news的主键(ID)作为生成.HTML的文件名
新建news_list.txt
<ahref="[$news->id].html"target="_blank">[$news->title]</a>[$news->time]<br/>
新建page.txt
<divalign="center"><ahref="news_list_[$page->first].html">第一页</a><ahref="news_list_[$page->prev].html">上一页</a><ahref="news_list_[$page->next].html">下一页</a><ahref="news_list_[$page->last].html">最后页</a></div>
新建news_content_list.txt
<tr>
<td>[$news_content->username]</td>
<td>[$news_content->document]</td>
<td>[$news_content->time]</td>
</tr>
新建news_document.txt
<html>
<head>
</head>
<body>
...
<h1align="center"><b>[$news->title]</b></h1>
<divalign="center">[$news->time]</div>
<div>[$news->document]</div>
...
相关评论:
[$news_content]
</body>
</html>
分页列表:
<%
functionMPage(rs){
varpagesize=15;
vartotalpage=parseInt(con.Execute("selectcount(ID)from("+rs.Source+")").Fields(0));
totalpage=totalpage%pagesize==0?parseInt(totalpage/pagesize):parseInt(totalpage/pagesize)+1;
varTemplate="";
//读文件Template.txt到Template变量中
/*
<html>
<head>
</head>
<body>
...
<div>[$news_list]</div>
...
<div>[$page]</div>
...
[$news_content]
</body>
</html>
*/
varnews_list="";
//读文件news_list.txt到news_list变量中
/*
<ahref="[$news->id].html"target="_blank">[$news->title]</a>[$news->time]<br/>
*/
varpage="";
//读文件page.txt到news_list变量中
/*
<divalign="center">
<ahref="news_list_[$page->first].html">第一页</a>
<ahref="news_list_[$page->prev].html">上一页</a>
<ahref="news_list_[$page->next].html">下一页</a>
<ahref="news_list_[$page->last].html">最后页</a>
</div>
*/
for(vari=0,pos=1;i<totalpage;i++,pos++){
if(pos!=1){rs.MoveFirst();rs.Move((pos-1)*pagesize);}
varostring=Template;
varotemp="";
for(varj=0;j<pagesize;j++){
vartemp=news_list;
temp=temp.replace(/[$news->id]/,String(rs.Fields("id")));
temp=temp.replace(/[$news->title]/,String(rs.Fields("title")));
temp=temp.replace(/[$news->time]/,String(rs.Fields("time")));
otemp+=temp;
}
ostring=ostring.replace(/[$news_list]/,String(otemp));
otemp=page;
otemp=otemp.replace(/[$page->first]/,String(1));
otemp=otemp.replace(/[$page->prev]/,String(pos-1));
otemp=otemp.replace(/[$page->next]/,String(pos+1));
otemp=otemp.replace(/[$page->last]/,String(totalpage));
ostring=ostring.replace(/[$news_list]/,String(otemp));
varfilename="news_list_"+pos+".html";
//将ostring的值写到文件filename中
}
}
%>
更多阅读
CD抓轨生成无损音频文件及CUE文件的方法 cd无损抓轨
使用ExactAudioCopy抓轨CD生成无损音频文件+CUE文件教程,音频发烧友必看。CD抓轨生成无损音频文件及CUE文件的方法——工具/原料有光驱的电脑、音乐CD光盘、ExactAudioCopy软件CD抓轨生成无损音频文件及CUE文件的方法——步骤/方法CD
如何将pdf文件转换成html文件 将html文件转换为pdf
如何将pdf文件转换成html文件——简介pdf文件是我们在工作生活中用的非常多高质量文件格式,有时我们需要将pdf转换成html网页文件,便于嵌入网页中,并且可以提取 PDF 中的图片。如何将pdf文件转换成html文件——工具/原料电脑pdf转换
原创如何录制游戏视频和将其转化成手机3GP格式的方法 下载3gp格式电影
只是个人的小博客,刚刚成长,虚伪的广告用语就免了吧.做博客没什么目的性,如今的网络谈不上有隐私可言,与其头脑一热的把情感宣泄出来,不如心里保留那一丝最美好的珍贵.下面给朋友介绍下录制游戏视频的方法,我没有粘贴别人的,只是个
禁止在DCIM文件夹下生成.thumbnails缩略图文件夹的方法! dcim.thumbnails
禁止在DCIM文件夹下生成.thumbnails缩略图文件夹的方法! 安卓手机使用一段时间后,莫明其妙空间被占用了好几个GB。因为安卓在TF卡DCIM文件夹下会生成tumbnails文件夹,里面有无数缩
转载 FileSystemObject的方法和属性 js filesystemobject
原文地址:FileSystemObject的方法和属性作者:衹因为你FileSystemObject的方法和属性1,FileExists : 如果文件存在就返回TRUESub FileExists()Dim fs As ObjectDim strFile As StringSet fs = CreateObject("scripting.filesystemobje