/****************************************************************
trylife $ notes JS二级联动; JS从UCHOME上拿来的
可用与帝国CMS模型和会员注册等
*****************************************************************/
0.
比如两个字段一级别字段lba 二级别字段lbb
1.添加字段lba 不需要添加默认值
2.添加lbb 不需要添加默认值
3.添加好后修改lba字段输入表单替换html代码为:<?=$ecmsfirstpost==1?"":htmlspecialchars
(stripSlashes($r[lba]))?>
投稿表单替换html代码为:<?=$ecmsfirstpost==1?"":DoReqValue
($tbname,'lba',stripSlashes($r[lba]))?>
4.添加好后修改lbb字段输入表单替换html代码为:<?=$ecmsfirstpost==1?"":htmlspecialchars
(stripSlashes($r[lbb]))?>
投稿表单替换html代码为:<?=$ecmsfirstpost==1?"":DoReqValue
($tbname,'lbb',stripSlashes($r[lbb]))?>
5.修改模型表单联动调用方法:
; ; ; ; ; ; ; ; <script type="text/javascript" src="/images/lbb.js"></script>
; ; ; ; ; ; ; ; <script type="text/javascript">
; ; ; ; ; ; ; ; <!--
; ; ; ; ; ; ; ; showlba('lba', 'lbb', '[!--lba--]');
; ; ; ; ; ; ; ; showlbb('lbb', '[!--lbb--]', 'lba');
; ; ; ; ; ; ; ;
; ; ; ; ; ; ; ; //-->
; ; ; ; ; ; ; ; </script>
6.JS文件对应/images/lbb.js放置
7.根据ECMS编码 使用DW更改JS为同ECMS的编码格式