📄 dvadmin_postings.js
字号:
function dvbbs_admin_postings_1(reaction,action,seldisable,doWealth,dousercp,douserep,ID,replyID){
document.write ('<FORM METHOD=POST ACTION="admin_postings.asp?action='+reaction+'" name="frmAnnounce">');
document.write ('<table style="wIDth:70%" cellspacing="1" cellpadding="3" align="center" class=tableborder1>');
document.write ('<tr>');
document.write ('<th height=24>论坛帖子管理中心-您要进行的操作是 <b>'+action+'</b></th>');
document.write ('</tr>');
document.write ('<tr>');
document.write ('<td class=tablebody1 height=24><b>');
document.write ('操作理由</b>:');
document.write (' <select name="title" size=1>');
document.write ('<option value="">自定义</option>');
document.write ('<option value="灌水">灌水</option>');
document.write ('<option value="广告">广告</option>');
document.write ('<option value="奖励">奖励</option>');
document.write ('<option value="好文章">好文章</option>');
document.write ('<option value="内容不符">内容不符</option>');
document.write ('<option value="重复发贴">重复发帖</option>');
document.write (' </select>');
document.write (' <input type="text" name="content" size=60> *</td>');
document.write ('</tr>');
document.write ('<tr>');
document.write ('<td class=tablebody1 height=24><b>');
document.write ('用户操作</b>: 金钱');
document.write (' <select name="doWealth" size=1 '+seldisable+'>');
for (i=-50;i<51 ;i++ )
{
document.write ('<option value="'+i+'" ');
if (doWealth==i)
{
document.write ('selected');
}
document.write ('>'+i+'</option>');
}
document.write (' </select> 魅力');
document.write (' <select name="douserCP" size=1 '+seldisable+'>');
for (i=-50;i<51 ;i++ )
{
document.write ('<option value="'+i+'" ');
if (dousercp==i)
{
document.write ('selected');
}
document.write ('>'+i+'</option>');
}
document.write (' </select> 经验');
document.write (' <select name="douserEP" size=1 '+seldisable+'>');
for (i=-50;i<51 ;i++ )
{
document.write ('<option value="'+i+'" ');
if (douserep==i)
{
document.write ('selected');
}
document.write ('>'+i+'</option>');
}
document.write ('</select> <input type="checkbox" name="checkbox" value="checkbox" onclick="nocent();" '+seldisable+'>不对用户进行分值操作');
document.write ('</td>');
document.write ('</tr>');
document.write ('<input type=hIDden value="'+ID+'" name="ID">');
document.write ('<input type=hIDden value="'+replyID+'" name="replyID">');
document.write ('<input type=hIDden value="'+Dvbbs.BoardID+'" name="boardID">');
document.write ('<tr>');
document.write ('<td height=24 class=tablebody1>');
document.write ('<B>短信通知</B>:<input type=text size=70 name="msg"> <input type="checkbox" name="ismsg" value="1">使用</td>');
document.write ('</tr>');
document.write ('<tr>');
document.write ('<td height=24 class=tablebody1>');
document.write ('<B>管理说明</B>:<BR>');
document.write ('①请慎重使用版主的管理职能,版主所有操作将被记录<BR>');
document.write ('②如果选择了短信通知,则会将删贴原因发送给用户,您也可以在短信中附上简短说明</td>');
document.write ('</tr>');
document.write ('<tr>');
document.write ('<td height=24 class=tablebody2 align=center>');
document.write ('<input type="submit" name=submit value="确认操作"></td>');
document.write ('</tr>');
document.write ('</table>');
document.write ('</FORM>');
}
function nocent()
{
if(document.frmAnnounce.doWealth.disabled==true)
{
document.frmAnnounce.doWealth.disabled=false;
document.frmAnnounce.douserCP.disabled=false;
document.frmAnnounce.douserEP.disabled=false;
}
else
{
document.frmAnnounce.doWealth.disabled=true;
document.frmAnnounce.douserCP.disabled=true;
document.frmAnnounce.douserEP.disabled=true;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -