<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>在线视频网
</title>
<base href="<?php echo base_url() ?>" />
<link href="css/style.css" rel="stylesheet" type="text/css" media="screen, projection" />
<script src="js/jquery-1.3.1.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){
var $div_li =$("div.tab_menu ul li");
$div_li.click(function(){
window.location.href="http://baidu.com/"+$(this).html()
})
$div_li.mouseover(function(){
$(this).addClass("selected") //当前
<li>元素高亮
.siblings().removeClass("selected"); //去掉其它同辈
<li>元素的高亮
var index = $div_li.index(this); // 获取当前点击的
<li>元素 在 全部li元素中的索引。
$show = $("div.tab_box > div"); //选取子节点。不选取子节点的话,会引起错误。如果里面还有div
$show.eq(index).fadeIn(500) //显示
<li>元素对应的
<div>元素
.siblings().hide();
//隐藏其它几个同辈的
<div>元素
}).hover(function(){
$(this).addClass("hover");
},function(){
$(this).removeClass("hover");
})
//----------用户验证-----------------------------------------------------
$('#zhuce').click(function(){
var bh = $("body").height();
var bw = $("body").width();
$("#fullbg").css({
height:bh,
width:bw,
display:"block"
});
$('.message').show();
//如果是必填的,则加红星标识.
$("form :input.required").each(function(){
var $required = $("
<span class='high'> *
</span>"); //创建元素
$(this).parent().append($required); //然后将它追加到文档中
});
//文本框失去焦点后
$('form :input').blur(function(){
var $parent = $(this).parent();
$parent.find(".formtips").remove();
//验证用户名
if( $(this).is('#user_name') ){
if( this.value=="" || this.value.length
< 6 ){
$parent.append('<span class="formtips onError"></span>');
}else{
$.ajax({
type: "post",
url: "
<?php echo site_url('show/usercheck') ?>",
datatype: "text",
data:"name="+$("#user_name").val(),
success: function(data){
console.log(data);
if(data=="2"){
message='hello';
$append = '
<span class="formtips onSuccess">'+message+'
</span>';
$parent.append($append);
}else{
$parent.append('
<span class="formtips onError">'+data+'
</span>');
}
}
});
}
}
//验证密码
if( $(this).is('#user_password') ){
if( this.value=="" ){
$parent.append('
<span class="formtips onError"></span>');
}else{
$parent.append('
<span class="formtips onSuccess"></span>');
}
}
//验证邮件
if( $(this).is('#email') ){
if( this.value=="" || ( this.value!=""
&& !/.+@.+\.[a-zA-Z]{2,4}$/.test(this.value) ) ){
$parent.append('<span class="formtips onError"></span>');
}else{
$parent.append('
<span class="formtips onSuccess"></span>');
}
}
})
/*.keyup(function(){
$(this).triggerHandler("blur");
}).focus(function(){
$(this).triggerHandler("blur");
});//end blur
*/
//提交,最终验证。
$('#send').click(function(){
$("form :input.required").trigger('blur');
var numError = $('form .onError').length;
if(numError){
return false;
}
});
//重置
$('#res').click(function(){
$(".formtips").remove();
})
$('#close').click(function(){
$('form :input.required + span').remove();
$('.message,#fullbg').hide();
})
})
//移动
$("#gb").mousedown(function(e){
var offset = $(".message").offset();
var p = {top
ffset.top - e.clientY,left
ffset.left - e.clientX};
if (!e) e = window.event;
$(document).mousemove(function(e){
$("#gb").css("cursor","text");
$(".message").css({"top":e.clientY + p.top,"left":e.clientX + p.left,"position":"absolute"});
});
$(document).mouseup(function(){
$("#gb").css("cursor","move");
$(".message").css("position","fixed !important");
$(this).unbind("mousemove");
});
});
})
</script>
</head>
<body>
<div id="fullbg"></div>
<div class="message"><div class='sharp color6'><b class='b1'></b><b class='b2'></b><b class='b3'></b><b class='b4'></b><div class='content'><div style='text-align:right; cursor:move;' id='gb'><span style="cursor:pointer;" id='close'>关闭
</span></div><div id='login' class='login'>用户注册
</div><div style=' border:1px solid #999; width:190px;'></div><form action="<?php echo site_url('index/add/'); ?>" method='post'>
<ul><li><label for='user_name'>用户名:
</label><input type='text' name='name' id='user_name' size='20' class='required' /></li><li><label for='user_password'>密码:
</label><input type='password' name='password' id='user_password' size='20' class='required' /></li><li><label for='email'>邮箱:
</label><input type='text' id='email' name='email' size='20' class='required' /></li><li id='sub'><br /><input type='submit' name='submit' id='send' class='bottom' value='提交' /><input type='reset' id='res' class='bottom' value='重置'/></li></ul></form></div><b class='b5'></b><b class='b6'></b><b class='b7'></b><b class='b8'></b></div></div>
<div id="head">
<div class="title">在线视频
</div>
<div class="search">
<div style=" clear:both; margin-left:32px;"><form id="form1" name="form1" method="post" action="">
<ul><li><input name="search" id="search" type="text" size="21" maxlength="20" /></li><li> <select name="movie_type" >
<option value="全部" selected >全部
</option>
<option value="电影">电影
</option>
<option value="动漫">动漫
</option>
</select></li><li> <input type="submit" name="submit" value=" "style="width:57px; height:24px; cursor:pointer; border:none; background-image:url(image/ico00000.gif)"; /></li></ul>
</form>
</div>
</div>
</div>
<div class="main">
<!--左边框-->
<div class="left">
<?php
if($this->session->userdata('user_data')){
$this->load->view('login_ok_view');
}else{
$this->load->view('login_view');
}
?>
</div>