本帖最后由 拓荒 于 2009-8-18 11:32 编辑
我用的是UCH2.0
我是想再群组里加上留言的功能
我研究了下作了如下一些修改
的确能够留言成功了
只是留言之后
无法在留言栏下方实时显示出来效果
必须要刷新下才能看到刚才的留言
希望高手帮我把把脉
目前我是这样更改的
一、在space_mtag_index.htm文件里
插入- <div class="space_wall_post">
- <form action="cp.php?ac=comment" id="commentform_{$mtag[tagid]}" name="commentform_{$mtag[tagid]}" method="post">
- <a href="###" id="message_face" onclick="showFace(this.id, 'comment_message');"><img src="image/facelist.gif" align="absmiddle" /></a>
- <!--{if $_SGLOBAL['magic']['doodle']}-->
- <a id="a_magic_doodle" href="magic.php?mid=doodle&showid=comment_doodle&target=comment_message" onclick="ajaxmenu(event, this.id, 1)"><img src="image/magic/doodle.small.gif" class="magicicon" />涂鸦板</a>
- <!--{/if}-->
- <br />
- <textarea name="message" id="comment_message" rows="5" cols="60" onkeydown="ctrlEnter(event, 'commentsubmit_btn');"></textarea>
- <input type="hidden" name="refer" value="space.php?do=mtag&tagid=$tagid" />
- <input type="hidden" name="id" value="$tagid" />
- <input type="hidden" name="idtype" value="tagid" />
- <input type="hidden" name="commentsubmit" value="true" />
- <br>
- <input type="button" id="commentsubmit_btn" name="commentsubmit_btn" class="submit" value="留言" onclick="ajaxpost('commentform_{$mtag[tagid]}', 'wall_add')" />
- <span id="__commentform_{$mtag[tagid]}"></span>
- <input type="hidden" name="formhash" value="<!--{eval echo formhash();}-->" />
- </form>
- </div>
复制代码 第二、我在cp_comment.php文件里de这段代码之下:- //检索空间
- $tospace = getspace($event['uid']);
-
- $hotarr = array('eventid', $event['eventid'], $event['hotuser']);
- $stattype = 'eventcomment';//统计
- break;
复制代码 增加了
- case 'tagid':
- $tospace = getspace($id);
- $stattype = 'mtagcomment';//统计
- break;
复制代码 |