摘要:
body{filter:Gray;}只要修改css中的body就可以了 阅读全文
摘要:
<script type="text/javascript"> $(function () { $("input:text").blur(function () {//失去焦点时 if ($(this).val().length > 0) $(this).css("background", "red"); else $(this).css("background", "white"); }) }) </script> 阅读全文
摘要:
setInterval() 方法可按照指定的周期(以毫秒计)来调用函数或计算表达式。用好了这个函数,可以实现很多功能,主要是用来实现用秒计量的事情,如注册前要必读的,setInterval() 方法会不停地调用函数,直到 clearInterval() 被调用或窗口被关闭。由 setInterval() 返回的 ID 值可用作 clearInterval() 方法的参数。<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD 阅读全文