<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>更換網(wǎng)頁背景</title>
</head>
<body>
<div align="center">
<table border="0" width="500" cellpadding="0" style="border-collapse: collapse" height="20" id="table1">
<tr>
<td width="219">
<p align="right"><font color="#808080"><span style="font-size: 9pt">
請選擇背景:</span></font></td>
<td width="281"><div align="center"><table border="1" width="240" cellspacing="0" cellpadding="0" height="20" id="table1" style="border-collapse: collapse" bordercolor="#FFFFFF">
<tr>
<td width="60" onClick="bb1.style.backgroundColor='FDFDF0';set_color('FDFDF0')" bgcolor="#FDFDF0"></td>
<td onClick="bb1.style.backgroundColor='B1D5F3';set_color('B1D5F3')" bgcolor="#B1D5F3" width="60"></td>
<td onClick="bb1.style.backgroundColor='B4E7D9';set_color('B4E7D9')" bgcolor="#B4E7D9" width="60"></td>
<td onClick="bb1.style.backgroundColor='F1E8FF';set_color('F1E8FF')" bgcolor="#F1E8FF" width="60"></td>
<td onClick="bb1.style.backgroundColor='E8FFF3';set_color('E8FFF3')" bgcolor="#E8FFF3" width="60"></td>
<td onClick="bb1.style.backgroundColor='CDCDDE';set_color('CDCDDE')" bgcolor="#CDCDDE" width="60"></td>
</tr>
</table>
</div></td>
</tr>
</table>
</div>
<script language=javascript>
function get_cookie(name_to_get) {
var cookie_pair
var cookie_name
var cookie_value
// Split all the cookies into an array
var cookie_array = document.cookie.split("; ")
// Run through the cookies
for (counter = 0; counter < cookie_array.length; counter++) {
// Split the cookie into a name/value pair
cookie_pair = cookie_array[counter].split("=")
cookie_name = cookie_pair[0]
cookie_value = cookie_pair[1]
// Compare the name with the name we want
if (cookie_name == name_to_get) {
// If this is the one, return the value
return unescape(cookie_value)
}
}
// If the cookie doesn't exist, return null
return null
}
// Get the bgColor cookie
var bg_color = get_cookie("bgColor_cookie")
// Did the cookie exist?
//if (bg_color) {
// document.bgColor = bg_color
//}
function set_color(color_val) {
// Get the currently selected color
//var color_list = color_form.color_name
//var selected_color = color_list.options[color_list.selectedIndex].value
// Change the color of the background
//opener.document["bgColor"] = color_val
// Save it in a cookie
set_cookie("bgColor_cookie", color_val, 365, "/")
}
function set_cookie(cookie_name, cookie_value, cookie_expire, cookie_path, cookie_domain, cookie_secure) {
// Begin the cookie parameter string
var cookie_string = cookie_name + "=" + cookie_value
// Add the expiration date, if it was specified
if (cookie_expire) {
var expire_date = new Date()
var ms_from_now = cookie_expire * 24 * 60 * 60 * 1000
expire_date.setTime(expire_date.getTime() + ms_from_now)
var expire_string = expire_date.toGMTString()
cookie_string += "; expires=" + expire_string
}
// Add the path, if it was specified
if (cookie_path) {
cookie_string += "; path=" + cookie_path
}
// Add the domain, if it was specified
if (cookie_domain) {
cookie_string += "; domain=" + cookie_domain
}
// Add the secure Boolean, if it's true
if (cookie_secure) {
cookie_string += "; true"
}
// Set the cookie
document.cookie = cookie_string
}
</html>
本代碼由<a href=http://www.qpsh.com>網(wǎng)頁特效網(wǎng)</a>提供