( تعداد نمایش : 1647 )

تغییر رنگ Boxها

با استفاده از این اسکریپت میتوانید رنگ Boxها را بعد از کلیک کردن تغییر دهید.

<html>
<head>

<style>
.t0 { color: brown; background-color: pink; }
.t1 { color: darkblue; background-color: gold; }
</style>

</head>
<body>

<form name=f1>
<textarea class=t1 id=textone>stuff in the box
</textarea>
<BR><input type=button value=”Change” onclick=”doIt()”>
</form>
<script>
var _I=1;
function doIt()
{
_I=(_I+1)%2;
/* example is for DOM browsers only */
if(document.getElementById)
document.getElementById(“textone”).className=”t”+_I;
}
</script>

</body>
</html>

دیدگاه خود را بیان کنید.

باید وارد سایت شده باشید برای دیدگاه دادن