位置:首页 > CMS技巧 > 帝国cms
帝国CMS 点击提取关键字转为tags
日期:2023-02-04 人气:

大家好,对帝国cms点击提取关键字转为tags感兴趣的小伙伴,下面一起跟随三零脚本的小编来看看帝国cms点击提取关键字转为tags的例子吧。

修改系统字段---special.field (特殊属性字段)

修改关键词位置,修改为

<script language="javascript">
function copykeyword(){
document.getElementById("keyword").focus()
document.getElementById("keyword").select()
document.getElementById("infotags").value=document.getElementById("keyword").value
}
</script>

  <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>

修改后样子 ,点击 复制关键词到tags