📄 index.htm
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>我的宝贝</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<script type="text/javascript" src="calc/calendar.js"></script>
<script type="text/javascript" src="calc/calendar-en.js"></script>
<link type="text/css" rel="stylesheet" href="calc/calendar-system.css"/>
<link rel="stylesheet" type="text/css" href="styles.css">
<script >
function doLogin()
{
document.forms[0].action = "pet.html";
document.forms[0].elements["operate"].value = "doLogin";
document.forms[0].submit();
}
function searchPet()
{
document.forms[0].action = "pet_list.htm";
document.forms[0].target = "_blank";
document.forms[0].elements["operate"].value = "list";
document.forms[0].submit();
}
function searchDiary()
{
document.forms[0].action = "diary_list.htm";
document.forms[0].target = "_blank";
document.forms[0].elements["operate"].value = "list";
document.forms[0].submit();
}
</script>
<script language="JavaScript">
// calendar /////////////////////////////////////////////////////////////////
//
var calendar = null;
function calSelected(cal, date) {
cal.sel.value = date;
var updateFlexElements = document.getElementsByName('updateF' + cal.sel.name.substring(1));
if ((typeof updateFlexElements != "undefined") && (updateFlexElements.length > 0)) {
var elem = updateFlexElements[0];
if (elem.type == "checkbox") {
elem.checked = true;
}
}
cal.callCloseHandler();
} // calSelected
function calCloseHandler(cal) {
cal.hide();
} // calCloseHandler
function calShow(id) {
var el = document.getElementById(id);
if (calendar != null) {
calendar.hide(); // hide the existing calendar
calendar.parseDate(el.value); // set it to a new date
} else {
var cal = new Calendar(false, null, calSelected, calCloseHandler);
var now = new Date();
calendar = cal;
//calendar.setDateFormat('mm/dd/y');
calendar.setDateFormat('y-mm-dd');
calendar.setRange(now.getFullYear() - 10, now.getFullYear() + 10);
calendar.weekNumbers = false;
calendar.create();
}
calendar.sel = el;
calendar.showAtElement(el);
//calendar.addEvent(document, "mousedown", checkCalendar);
return false;
} // calShow
</script>
</head>
<body>
<form name="petForm" method="post" action="pet.html">
<input type="hidden" name="operate" value="index">
<div class="main_div">
<h1>我的宝贝儿</h1>
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="450">
</td>
<td rowspan="2" style="background-color:pink;text-align:right;">
宠物<input type="text" name="condition.petId" size="6" value="">
密码<input type="password" name="condition.petPassword" size="6" value="">
<button onclick="javascript:doLogin();">登录</button>
</td>
</tr>
<tr>
<td style="background-color:pink;">
<a href="adopt.htm">领养宠物</a>
</td>
</tr>
</table>
</div>
<div class="main_div">
<table><tr>
<td>
<table style="border:solid 1px black;" height="200px" width="500px">
<tr>
<th colspan="2" style="background-color:gray;height:20px;">
金宝宝排行
</th>
</tr>
<tr>
<td width="200px">
<img src="images/pet/pig.jpg" width="200px" height="140px" /><br />
yicongying
(千禧猪-318-hlliu)<br />
[力量:170;
能力:145;
爱心:139]
</td>
<td>
<li>
<a href="pet.htm" target="_blank">
yicongying
</a>(千禧猪 - 318 - hlliu)
</li>
<li>
<a href="pet.htm" target="_blank">
yicongying
</a>(千禧猪 - 246 - hlliu)
</li>
<li>
<a href="pet.htm" target="_blank">
yicongying
</a>(千禧猪 - 246 - hlliu)
</li>
<li>
<a href="pet.htm" target="_blank">
dog1
</a>(未定 - 220 - xiao)
</li>
<li>
<a href="pet.htm" target="_blank">
new
</a>(哥斯拉 - 203 - hlliu)
</li>
<li>
<a href="pet.htm" target="_blank">
newcat
</a>(喵咪 - 184 - ss)
</li>
<li>
<a href="pet.htm" target="_blank">
bb
</a>(哥斯拉 - 128 - bb)
</li>
<li>
<a href="pet.htm" target="_blank">
qq
</a>(哥斯拉 - 116 - )
</li>
<li>
<a href="pet.htm" target="_blank">
11
</a>(哥斯拉 - 116 - 11)
</li>
<li>
<a href="pet.htm" target="_blank">
ww
</a>(哥斯拉 - 116 - 2)
</li>
<br />
<a href="pet_list.htm" target="_blank">更多>></a>
</td>
</tr>
</table>
</td>
<td valign="top">
<table style="border:solid 1px black;height:20px;" height="200px" width="300px">
<tr>
<th colspan="1" style="background-color:gray;">
查找
</th>
</tr>
<tr>
<td valign="top" style="height:182px;">
宠物名 <input type="text" name="condition.petName" size="10" value=""><br />
宠物类别
<select name="condition.petType"><option value="-1">全部...</option>
<option value="1">千禧猪</option>
<option value="2">喵咪</option>
<option value="3">哥斯拉</option></select>
<br />
主人 <input type="text" name="condition.petOwnerName" size="10" value="">
<button onclick="javascript:searchPet();">查找宠物</button>
<br /><br />
标题 <input name="condtion.diaryTitle" size="10" /><br />
作者 <input name="condtion.diaryAuthor" size="10" /><br />
日期 <input type="text" onclick="calShow('condtion.diaryDateString');" onfocus="calShow('condtion.diaryDateString');" name="condtion.diaryDateString" size="10" readonly="true" />
<br />
关键字 <input name="condtion.diaryContext" size="10" />
<button onclick="javascript:searchDiary();">查找日记</button>
<br />
</td>
</tr>
</table>
</td>
</tr></table>
</div>
<div class="main_div">
<table><tr>
<td>
<table style="border:solid 1px black;height:20px;" height="200px" width="200px">
<tr>
<th colspan="1" style="background-color:gray;">
最新宠物日记
</th>
</tr>
<tr>
<td valign="top">
<li>
<a href="diary.htm#1" target="_blank">
t1
</a>(kk,2007-07-15)
</li>
<li>
<a href="diary.htm#2" target="_blank">
t2
</a>(,2007-07-31)
</li>
<li>
<a href="diary.htm#3" target="_blank">
t3
</a>(,2007-08-01)
</li>
<li>
<a href="diary.htm#4" target="_blank">
t4
</a>(,2007-06-30)
</li>
<li>
<a href="diary.htm#5" target="_blank">
t5
</a>(hlliu,2007-07-01)
</li>
<li>
<a href="diary.htm#6" target="_blank">
t6
</a>(hlliu,2007-07-01)
</li>
<li>
<a href="diary.htm#7" target="_blank">
t7
</a>(hlliu,2007-07-01)
</li>
<li>
<a href="diary.htm#8" target="_blank">
t8
</a>(hlliu,2007-07-01)
</li>
<li>
<a href="diary.htm#9" target="_blank">
t9
</a>(hlliu,2007-07-01)
</li>
<li>
<a href="diary.htm#10" target="_blank">
t10
</a>(hlliu,2007-07-01)
</li>
<br />
<a href="diary_list.htm" target="_blank">更多>></a>
</td>
</tr>
</table>
</td>
<td>
<table style="border:solid 1px black;height:20px;" height="200px" width="200px">
<tr>
<th colspan="1" style="background-color:gray;">
最活力宝贝
</th>
</tr>
<tr>
<td valign="top">
<li>
<a href="pet.htm#19" target="_blank">
new
</a>(195)
</li>
<li>
<a href="pet.htm#14" target="_blank">
yicongying
</a>(190)
</li>
<li>
<a href="pet.htm#15" target="_blank">
yicongying
</a>(190)
</li>
<li>
<a href="pet.htm#9" target="_blank">
yicongying
</a>(170)
</li>
<li>
<a href="pet.htm#1" target="_blank">
dog1
</a>(100)
</li>
<li>
<a href="pet.htm#16" target="_blank">
newcat
</a>(100)
</li>
<li>
<a href="pet.htm#21" target="_blank">
bb
</a>(100)
</li>
<li>
<a href="pet.htm#12" target="_blank">
qq
</a>(80)
</li>
<li>
<a href="pet.htm#13" target="_blank">
11
</a>(80)
</li>
<li>
<a href="pet.htm#20" target="_blank">
ww
</a>(80)
</li>
<br />
<a href="pet_list.htm" target="_blank">更多>></a>
</td>
</tr>
</table>
</td>
<td>
<table style="border:solid 1px black;height:20px;" height="200px" width="200px">
<tr>
<th colspan="1" style="background-color:gray;">
最聪明宝贝
</th>
</tr>
<tr>
<td valign="top">
<li>
<a href="pet.htm#9" target="_blank">
yicongying
</a>(145)
</li>
<li>
<a href="pet.htm#14" target="_blank">
yicongying
</a>(106)
</li>
<li>
<a href="pet.htm#15" target="_blank">
yicongying
</a>(106)
</li>
<li>
<a href="pet.htm#1" target="_blank">
dog1
</a>(100)
</li>
<li>
<a href="pet.htm#19" target="_blank">
new
</a>(90)
</li>
<li>
<a href="pet.htm#16" target="_blank">
newcat
</a>(72)
</li>
<li>
<a href="pet.htm#21" target="_blank">
bb
</a>(64)
</li>
<li>
<a href="pet.htm#12" target="_blank">
qq
</a>(60)
</li>
<li>
<a href="pet.htm#13" target="_blank">
11
</a>(60)
</li>
<li>
<a href="pet.htm#20" target="_blank">
ww
</a>(60)
</li>
<br />
<a href="pet_list.htm" target="_blank">更多>></a>
</td>
</tr>
</table>
</td>
<td>
<table style="border:solid 1px black;height:20px;" height="200px" width="200px">
<tr>
<th colspan="1" style="background-color:gray;">
最可爱宝贝
</th>
</tr>
<tr>
<td valign="top">
<li>
<a href="pet.htm#9" target="_blank">
yicongying
</a>(139)
</li>
<li>
<a href="pet.htm#14" target="_blank">
yicongying
</a>(102)
</li>
<li>
<a href="pet.htm#15" target="_blank">
yicongying
</a>(102)
</li>
<li>
<a href="pet.htm#1" target="_blank">
dog1
</a>(100)
</li>
<li>
<a href="pet.htm#16" target="_blank">
newcat
</a>(92)
</li>
<li>
<a href="pet.htm#19" target="_blank">
new
</a>(74)
</li>
<li>
<a href="pet.htm#21" target="_blank">
bb
</a>(44)
</li>
<li>
<a href="pet.htm#12" target="_blank">
qq
</a>(40)
</li>
<li>
<a href="pet.htm#13" target="_blank">
11
</a>(40)
</li>
<li>
<a href="pet.htm#20" target="_blank">
ww
</a>(40)
</li>
<br />
<a href="pet_list.htm" target="_blank">更多>></a>
</td>
</tr>
</table>
</td>
</tr></table>
</div>
<hr size="1" width="800px" color="black"/>
<div class="main_div" style="border-width:0;text-align:right;">
copyright © 2007 北京阿博泰克北大青鸟信息技术有限公司
</div>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -