帝国CMS二次开发后的作用

帝国CMS随机会员头像功用开发过程

1、首先把会员的“userpic”字段设置为文本类型,首要用来存头像途径。然后在新建一个“userpic2”字段,首要用来上传头像。

2、随机头像图片代码

<tablewidth="100%">
<tr>
<tdvalign="top">随机图画:</td>
<tdbgcolor='ffffff'>
<imgsrc='/e/template/Style/img/1.jpg'id='img2'width="180"height="180"/>
</td>
</tr>
<tr>
<tdcolspan="2"height="20"></td>
</tr>
<tr>
<tdcolspan="2"><aclass="changeImg"href="javascript:void(0)"onclick="ChangeFace()">换一张</a>
</td>
</tr>
<tr>
<tdcolspan="2"height="20"></td>
</tr>
<tr>
<tdcolspan="2"align="center">
<buttonclass="editPassword-submit"type="submit"id="faceSubmit">运用头像</button>
</td></tr>
</table>
<scripttype="text/javascript">
functionChangeFace(){
//x上限,y下限
varx=10;
vary=1;
varrand=parseInt(Math.random()*(x-y+1)+y);
varface='/e/template/Style/img/'+rand+'.jpg';
$("#img2").attr('src',face);
$("input[name='userpic']").attr('value',face);
}
</script>

3、userpic字段代码

<inputname="userpic"type="text"id="userpic"value="<?=$ecmsfirstpost==1?"":ehtmlspecialchars(stripSlashes($addr[userpic]))?>"size=""style="display:none">
<?=empty($addr[userpic])?"":"<imgsrc='".ehtmlspecialchars(stripSlashes($addr[userpic]))."'border=0id=img2>"?><br>

4、userpic2字段代码

<inputtype="file"name="userpic2file"size="45">
<inputname="userpic2"type="text"id="userpic2"value="<?=$ecmsfirstpost==1?"":ehtmlspecialchars(stripSlashes($addr[userpic2]))?>"size=""style="display:none">

5、给表单上传图片提交按钮设置一个ID

<inputtype='submit'name='Submit'value='上传头像'onclick="bt();">

让他在提交前,把上传的userpic2字段内容赋值到userpic字段里边。

functionbt(){
vartxt=$("input[name='userpic2']").val();
$("input[name='userpic']").attr('value',txt);
}

这样就可以了,点击左面的“上传图片”按钮会把userpic2的内容给userpic,点击右边的“运用头像”按钮,也会把随机生成的头像地址赋值给userpic。

个人觉得挺费事的,首要是不想改程序,就用这种“障眼法”来完结。

声明:有的资源均来自网络转载,版权归原作者所有,如有侵犯到您的权益 请联系邮箱:123456@qq.com 我们将配合处理!

原文地址:帝国CMS二次开发设置随机会员头像发布于2022-06-26 07:43:27

相关推荐