无法自动跳转的,请用以下方法:
wordclass.php
查找:
- showmessage("设置单词级别为".$listkind[$wo], "javascript:history.go(-1)");
复制代码
改为:
- showmessage("设置单词级别为".$listkind[$wo], "javascript:history.go(-1);");
复制代码
原帖由 tearszhu 于 2005-9-25 10:45 发表
.......
非Windows主机
改6.TXT为6.txt
我,回来啦~~~~~~~~~~~~~~~~~~~~~~~~
回来之后还有很多事情要完成, 所以还是要消失一段时间的讲, 哎...想大家呀!
既然回来了...不能就这么走了呀...所以抽了个时间弄了个插件给大家用用...谢谢大家喜欢....
即使你不喜欢...看在我辛苦为大家的份上...你也支持个吧..哈哈~
陪你背单词(发音+自选词库版+自定义库)
相信这个大家都比较熟悉了吧...只能我有发过一个转贴的, 但是没有发音和选词库的功能...
这个似乎在某些论坛上出现过..不过可能有原因他们不能给大家共享..哎....
这个呢...加了发言功能(借用金山词霸网的),再加了会员选择适合自己的字库功能
另外还加了管理员可以自己定义或增加新的字库.
OK...大家接着就安装吧!
先按结构上传所有附件到论坛目录.接下来:
安装步骤:
Include/Common.js
最后加入这些代码:
- function str2img(str)
- {
- var lenStr = str.length;
- var rsString = "";
- if ( lenStr <= 0 ){
- return ;
- }
- for (var i=0;i<lenStr;i++) {
- var theChar = str.substr(i,1);
- if (theChar == " "){
- rsString += " ";
- }
- else if (theChar == "'"){
- rsString += "<img src="http://cb.kingsoft.com/ui/i/yinbiao/5.png" border="0" />";}
- else if (theChar == "-"){
- rsString += "<img src="http://cb.kingsoft.com/ui/i/yinbiao/zhonggangxian.png" border="0" />";}
- else if (theChar == "_"){
- rsString += "<img src="http://cb.kingsoft.com/ui/i/yinbiao/xiahuaxian.png" border="0" />";}
- else if (theChar == "."){
- rsString += "<img src="http://cb.kingsoft.com/ui/i/yinbiao/dian.png" border="0" />";}
- else if (theChar == "\"){
- rsString += "<img src="http://cb.kingsoft.com/ui/i/yinbiao/xiexian.png" border="0" />";}
- else if (theChar == "/"){
- rsString += "<img src="http://cb.kingsoft.com/ui/i/yinbiao/fanxiexian.png" border="0" />";}
- else if (theChar == "?"){
- rsString += "<img src="http://cb.kingsoft.com/ui/i/yinbiao/wenhao.png" border="0" />";}
- else{
- rsString += "<img src="http://cb.kingsoft.com/ui/i/yinbiao/"+theChar+".png" border="0" />";}
- }
- document.write("<img src="http://cb.kingsoft.com/ui/i/v01/fangkh-z.gif" border="0" />"+rsString+"<img src="http://cb.kingsoft.com/ui/i/v01/fangkh-y.gif" border="0" />");
- }
- function Fword(value)
- {
- if(value!= '') {
- window.location=('wordclass.php?wo='+value);
- }
- }
复制代码
Viewthread.php
查找:
- $post['regdate'] = gmdate($dateformat, $post['regdate'] + $timeoffset * 3600);
复制代码
下面加:
- //--------------背单词语音版---------oytktk
- require_once "./wordlib/libconfig.php";
- require_once "./wordcfg.php";
- $n=count($listkind);
- $opwo="<select onchange=Fword(this.options[this.selectedIndex].value)>";
- $opwo.="<option value=''>选择词库级别</option>";
- foreach($listkind as $key=>$value)
- {
- $opwo.="<option value=$key>$value</option>";
- }
- $opwo.="</select>";
- $woselect=$opwo;
- $post['words']=getword($wordkind,$wordcuttype,$words);
- //--------------背单词语音版---------oytktk
复制代码
Templates/Defaule/Viewthread.htm
(不同的模板请大家自己按情况处理)
查找:
- <!--{if $postkey == $topiccount-1}--><a name="#lastpost"></a><!--{/if}-->
复制代码
上面加:
- $woselect{$post[words]}<hr size=1 noshade color={BGCOLOR}></td></tr>
- <tr><td valign="top">
复制代码
值得注意的是:
如果你要新增自定义词库的话,
先将新的字库文件放到wordlib文件夹内,再设置wordlib文件夹内的libconfig.php文件,这个文件内有说明,你可以按其中的说明来完成.
完工啦~~~随便你啥时候顶..只要你顶就行....
[ 本帖最后由 oytktk 于 2007-8-24 08:42 编辑 ] |