功能更新,bug修复
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
|
||||
<meta charset="UTF-8">
|
||||
<title>用户注册</title>
|
||||
<title>用户登录</title>
|
||||
<link rel="stylesheet" type="text/css" href="__PUBLIC__/css/libs/font-awesome.css"/>
|
||||
<link rel="stylesheet" type="text/css" href="__PUBLIC__/css/common.css"/>
|
||||
<!-- <link href='//fonts.googleapis.com/css?family=Open+Sans:400,600,700,300|Titillium+Web:200,300,400' rel='stylesheet' type='text/css'> -->
|
||||
@@ -75,13 +75,8 @@
|
||||
</div>
|
||||
|
||||
<div id="footer" class="wrapper">
|
||||
<p><a href="http://s.dxpd.cn/shop">首页</a>
|
||||
| <a href="http://s.dxpd.cn/index.php?act=article&article_id=24">招聘英才</a>
|
||||
| <a href="http://s.dxpd.cn/index.php?act=article&article_id=25">合作及洽谈</a>
|
||||
| <a href="http://s.dxpd.cn/index.php?act=article&article_id=23">联系我们</a>
|
||||
| <a href="http://s.dxpd.cn/index.php?act=article&article_id=22">关于我们</a>
|
||||
| <a href="http://s.dxpd.cn/delivery">物流自取</a>
|
||||
| <a href="http://s.dxpd.cn/index.php?act=link">友情链接</a>
|
||||
<p><a href="{:url('index/index/index')}">首页</a>
|
||||
| <a href="{:url('user/index/index')}">会员中心</a>
|
||||
</p>
|
||||
Copyright 2015 <a href="http://www.tensent.cn" target="_blank">腾速科技</a> All rights reserved.<br/>
|
||||
</div>
|
||||
@@ -123,12 +118,12 @@ $(function(){
|
||||
//初始化选中用户名输入框
|
||||
$("#itemBox").find("input[name=username]").focus();
|
||||
//刷新验证码
|
||||
var verifyimg = $(".codeimage").attr("src");
|
||||
var verifyimg = $("#codeimage").attr("src");
|
||||
$(".makecode").click(function(){
|
||||
if( verifyimg.indexOf('?')>0){
|
||||
$(".codeimage").attr("src", verifyimg+'&random='+Math.random());
|
||||
$("#codeimage").attr("src", verifyimg+'&random='+Math.random());
|
||||
}else{
|
||||
$(".codeimage").attr("src", verifyimg.replace(/\?.*$/,'')+'?'+Math.random());
|
||||
$("#codeimage").attr("src", verifyimg.replace(/\?.*$/,'')+'?'+Math.random());
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user