当前位置:阳诡子 > 建站 > 正文

ECMS复制关键字到Tags

时间:2020-12-15  来源:  作者:

前言

在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':''?>>
      审核 &nbsp;&nbsp; 推荐 
      <select name="isgood" id="isgood">
        <option value="0">不推荐</option>
	<?=$ftnr['igname']?>
      </select>
      &nbsp;&nbsp; 头条 
      <select name="firsttitle" id="firsttitle">
        <option value="0">非头条</option>
	<?=$ftnr['ftname']?>
      </select></td>
  </tr>
  <tr> 
    <td height="25" bgcolor="#FFFFFF">关键字&nbsp;&nbsp;&nbsp;: 
      <input name="keyboard" type="text" size="52" value="<?=stripSlashes($r[keyboard])?>">
      <font color="#666666">(多个请用&quot;,&quot;隔开)</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':''?>>
审核 &nbsp;&nbsp; 推荐 
<select name="isgood" id="isgood">
<option value="0">不推荐</option>
<?=$ftnr['igname']?>
</select>
&nbsp;&nbsp; 头条 
<select name="firsttitle" id="firsttitle">
<option value="0">非头条</option>
<?=$ftnr['ftname']?>
</select></td>
</tr>
<tr> 
<td height="25" bgcolor="#FFFFFF">关键字&nbsp;&nbsp;&nbsp;: 
<input name="keyboard" id="keyword" type="text" size="49" value="<?=stripSlashes($r[keyboard])?>">
 <input type="button" value="拷贝到Tags" onclick="copykeyword()"> <font color="#666666">(多个请用&quot;,&quot;格开)</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>

即可。

来顶一下
返回首页
返回首页
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表
相关文章
CopyRight 2008-2022, 529600.Net, Inc.All Rights Reserved
粤ICP备2022094815号-1  网安备案粤公网安备 44178102001207号