<table id=tWidth border=1 cellpatWidthing=5 cellspacing=5>
<tr bgcolor=yellow>
<td><input type=button value="늘이기" onClick=plus()></td>
<td><input type=button value="줄이기" onClick=minus()></td>
</tr>
</table>
<p>
<input type=button value="기본값" onClick=basic()>
.
<SCRIPT LANGUAGE="JavaScript">
<!--
/*
=====================================
이곳이 초기값 설정하는 부분입니다.
최소값은 기본값보다 100px이 작습니다.
=====================================
*/
var dSize = Number(300); // 기본값
var pSize = Number(20); // 더하고 빠지는 값
var size = Number(0);
if (getCookie("HOMESIZE"))
{
size = Number(getCookie("HOMESIZE"))
document.getElementById("tWidth").width = size
}
else
{
size = dSize
document.getElementById("tWidth").width = dSize
}
function basic() // 기본값
{
size = document.getElementById("tWidth").width = dSize
deleteCookie("HOMESIZE")
}
function plus() // 늘리기
{
size = size + pSize
document.getElementById("tWidth").width = size
userCookie("HOMESIZE",size,365)
}
function minus() // 줄이기
{
if ( size > (dSize-100) ){
size = size - pSize
document.getElementById("tWidth").width = size
userCookie("HOMESIZE",size,365)
}
else
{
alert ("집이 너무 작아집니다.. -_-");
}
}
function deleteCookie(name)
{
var expires = new Date();
var value = getCookie(name);
if(value) {
document.cookie = name + "=" + value + "; expires=" + expires.toGMTString();
}
}
function userCookie(name,value,expire) {
str = '';
str = name + "=" + value + ( (expire) ? "; expires=" + makeGMT(expire) : "") ;
document.cookie = str;
}
function makeGMT(stay_time) {
_time = new Date();
_time.setTime(_time.getTime() + 60 * 60 * 1000 * stay_time);
return _time.toGMTString();
}
function getCookie(wan_str) {
var cs = document.cookie;
var prefix = wan_str + "=" ;
var cSI = cs.indexOf(prefix);
if (cSI == -1) return null;
else {
var cEI = cs.indexOf(";", cSI + prefix.length);
if (cEI == -1) ret_str = cs.slice(cSI + prefix.length, cs.length);
else ret_str = cs.slice(cSI + prefix.length, cEI);
}
return ret_str;
}
// onload = basic;
//-->
</SCRIPT>
<tr bgcolor=yellow>
<td><input type=button value="늘이기" onClick=plus()></td>
<td><input type=button value="줄이기" onClick=minus()></td>
</tr>
</table>
<p>
<input type=button value="기본값" onClick=basic()>
.
<SCRIPT LANGUAGE="JavaScript">
<!--
/*
=====================================
이곳이 초기값 설정하는 부분입니다.
최소값은 기본값보다 100px이 작습니다.
=====================================
*/
var dSize = Number(300); // 기본값
var pSize = Number(20); // 더하고 빠지는 값
var size = Number(0);
if (getCookie("HOMESIZE"))
{
size = Number(getCookie("HOMESIZE"))
document.getElementById("tWidth").width = size
}
else
{
size = dSize
document.getElementById("tWidth").width = dSize
}
function basic() // 기본값
{
size = document.getElementById("tWidth").width = dSize
deleteCookie("HOMESIZE")
}
function plus() // 늘리기
{
size = size + pSize
document.getElementById("tWidth").width = size
userCookie("HOMESIZE",size,365)
}
function minus() // 줄이기
{
if ( size > (dSize-100) ){
size = size - pSize
document.getElementById("tWidth").width = size
userCookie("HOMESIZE",size,365)
}
else
{
alert ("집이 너무 작아집니다.. -_-");
}
}
function deleteCookie(name)
{
var expires = new Date();
var value = getCookie(name);
if(value) {
document.cookie = name + "=" + value + "; expires=" + expires.toGMTString();
}
}
function userCookie(name,value,expire) {
str = '';
str = name + "=" + value + ( (expire) ? "; expires=" + makeGMT(expire) : "") ;
document.cookie = str;
}
function makeGMT(stay_time) {
_time = new Date();
_time.setTime(_time.getTime() + 60 * 60 * 1000 * stay_time);
return _time.toGMTString();
}
function getCookie(wan_str) {
var cs = document.cookie;
var prefix = wan_str + "=" ;
var cSI = cs.indexOf(prefix);
if (cSI == -1) return null;
else {
var cEI = cs.indexOf(";", cSI + prefix.length);
if (cEI == -1) ret_str = cs.slice(cSI + prefix.length, cs.length);
else ret_str = cs.slice(cSI + prefix.length, cEI);
}
return ret_str;
}
// onload = basic;
//-->
</SCRIPT>
반응형
'인터넷정보' 카테고리의 다른 글
[스타일시트] 프린트할때 출력되게 하기 (0) | 2007.10.18 |
---|---|
자식창에서 부모창으로 submit 하기 (0) | 2007.10.18 |
자식창에서 부모창으로 submit 하기 (0) | 2007.10.18 |
창에서의 F11, F5, Ctrl 비활성화 스크립트 (0) | 2007.10.18 |
창에서의 F11, F5, Ctrl 비활성화 스크립트 (0) | 2007.10.18 |
테이블크기 늘리기,줄이기,초기값지정 (0) | 2007.10.18 |
인풋 박스 숫자 입력시 툴팁으로 표시 (0) | 2007.10.18 |
인풋 박스 숫자 입력시 툴팁으로 표시 (0) | 2007.10.18 |
숫자만 입력되었는지 체크하기 (0) | 2007.10.18 |
숫자만 입력되었는지 체크하기 (0) | 2007.10.18 |