用到织梦cms软件模型的时候,手动指定地址通常只能是引用其他网址或者链接,我们要实现直接选取站内的文件,这个要怎么操作呢?下面云站友就来说说解决方法,最终效果如下图所示:
实现教程
1、打开 /dede/templets/soft_add.htm
找到
<input type='text' name='servermsg"+startNum+"' style='width:150px' />
在它后面加入
<input name=\"sel1\" id=\"sel1\" value=\"选取\" onclick=\"SelectSoft('form1.softurl"+startNum+"')\" type=\"button\">
2、打开 /dede/templets/soft_edit.htm 找到
<input type='text' name='servermsg"+startNum+"' style='width:150px' />
在它后面加入
<input name=\"sel1\" id=\"sel1\" value=\"选取\" onclick=\"SelectSoft('form1.softurl"+startNum+"')\" type=\"button\">
3、打开 /dede/soft_edit.php 找到
else $needmsg = '<input name="sel1" type="button" id="sel1" value="选取" onClick="SelectSoft(\'form1.softurl'.$newRowStart.'\')" />';
删除这一行或者注释这一行
继续找到
<input type='hidden' name='islocal{$newRowStart}' value='{$islocal}' />
在它后面加入
<input name=\"sel1\" id=\"sel1\" value=\"选取\" onclick=\"SelectSoft('form1.softurl{$newRowStart}')\" type=\"button\">
修改到这里就是完成了,需要这个功能的朋友可以去试下。
评论前必须登录!
立即登录 注册