前言
在ECMS发布内容时,关键字在基本信息,而TAGS在选项设置,每次都要手动复制过去,非常麻烦!用了以下的代码就可以只需要轻轻点击一下,便可以实现关键字同步到TAGS!
方法
1、打开“ECMS”,点击上方菜单中的“系统”,展开左侧菜单中的“数据表与系统模型”,然后点击“管理数据表”;
2、从“相应的数据表”右方的点击“管理字段”;
3、找到“special.field”右方的“[修改系统字段]”并点击进去;
4、将原始代码:
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DBEAF5">
<tr>
<td height="25" bgcolor="#FFFFFF">信息属性:
<input name="checked" type="checkbox" value="1"<?=$r[checked]?' checked':''?>>
审核 推荐
<select name="isgood" id="isgood">
<option value="0">不推荐</option>
<?=$ftnr['igname']?>
</select>
头条
<select name="firsttitle" id="firsttitle">
<option value="0">非头条</option>
<?=$ftnr['ftname']?>
</select></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF">关键字 :
<input name="keyboard" type="text" size="52" value="<?=stripSlashes($r[keyboard])?>">
<font color="#666666">(多个请用","隔开)</font></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF">外部链接:
<input name="titleurl" type="text" value="<?=stripSlashes($r[titleurl])?>" size="52">
<font color="#666666">(填写后信息连接地址将为此链接)</font></td>
</tr>
</table>
清空并改为:
<script type="text/javascript">
function copykeyword(){
document.getElementById("keyword").focus()
document.getElementById("keyword").select()
document.getElementById("infotags").value=document.getElementById("keyword").value
}
</script>
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DBEAF5">
<tr>
<td height="25" bgcolor="#FFFFFF">信息属性:
<input name="checked" type="checkbox" value="1"<?=$r[checked]?' checked':''?>>
审核 推荐
<select name="isgood" id="isgood">
<option value="0">不推荐</option>
<?=$ftnr['igname']?>
</select>
头条
<select name="firsttitle" id="firsttitle">
<option value="0">非头条</option>
<?=$ftnr['ftname']?>
</select></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF">关键字 :
<input name="keyboard" id="keyword" type="text" size="49" value="<?=stripSlashes($r[keyboard])?>">
<input type="button" value="拷贝到Tags" onclick="copykeyword()"> <font color="#666666">(多个请用","格开)</font></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF">外部链接:
<input name="titleurl" type="text" value="<?=stripSlashes($r[titleurl])?>" size="52">
<font color="#666666">(填写后信息连接地址将为此链接)</font></td>
</tr>
</table>
即可。
|