|
内容
- <SCRIPT language=javascript type=text/javascript><br>
- <!--
- function iif(str,str1,str2){
- if (str==1){str=str1}else{str=str2}
- return(str)
- }
- function giif(str,str1,str2){
- if (str==1 || str==2){str=str1}else{str=str2}
- return(str)
- }
- document.write ('<li>HTML标签:' + iif(1,'<font color="red">可用</font>','<font color="#CCCCCC">不可用</font>'))
- document.write ('<li>UBB标签:' + iif(1,'<font color="red">可用</font>','<font color="#CCCCCC">不可用</font>'))
- document.write ('<li>贴图标签:'+ iif(1,'<font color="red">可用</font>','<font color="#CCCCCC">不可用</font>'))
- document.write ('<li>Flash标签: ' + iif(0,'<font color="red">可用</font>','<font color="#CCCCCC">不可用</font>'))
- document.write ('<li>多媒体标签: ' + iif(1,'<font color="red">可用</font>','<font color="#CCCCCC">不可用</font>'))
- document.write ('<li>表情字符转换:' + iif(1,'<font color="red">可用</font>','<font color="#CCCCCC">不可用</font>'))
- document.write ('<li>上传图片:' + giif(0,'<font color="red">可用</font>','<font color="#CCCCCC">不可用</font>'))
- document.write ('<li>每天允许发帖数:<font color="red">200</font> ');
- document.write ('<li>今天已发帖数:<font color="red">0</font> 篇');
- document.write ('<li>最多:' + Math.floor((Math.floor(16240)/1024)) + 'KB<br /><br />')
- document.write ('<b>特殊内容</b><br />')
- document.write ("<li>" + iif(1,"<a>金钱帖</a>","金钱帖:不可用"))
- document.write ("<li>" + iif(1,"<a>积分帖</a>","积分帖:不可用"))
- document.write ("<li>" + iif(1,"<a>魅力帖</a>","魅力帖:不可用"))
- document.write ("<li>" + iif(1,"<a>威望帖</a>","威望帖:不可用"))
- document.write ("<li>" + iif(1,"<a>文章帖</a>","文章帖:不可用"))
- document.write ("<li>" + iif(1,"<a>回复帖</a>","回复帖:不可用"))
- document.write ("<li>" + iif(0,"<a>出售帖</a>","出售帖:不可用"))
- document.write ("<li>" + iif(0,"<a>定员帖</a>","定员贴:不可用"))
- //-->
- <br></script>
复制代码
HTML标签:可用
UBB标签:可用
贴图标签:可用
Flash标签: 不可用
多媒体标签: 可用
表情字符转换:可用
上传图片:不可用
每天允许发帖数:200
今天已发帖数:0 篇
最多:15KB
特殊内容
金钱帖
积分帖
魅力帖
威望帖
文章帖
回复帖
出售帖:不可用
定员贴:不可用
[此贴子已经被作者于2007-7-27 17:54:24编辑过] |
|