点击整页变灰的效果(可做退出效果)。
注:页面头部必须加上
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
否则效果不能实现

<a href="#" onclick='return log_out()'>安全退出</a>
<script language="JavaScript">
<!--
function log_out()
{
 ht = document.getElementsByTagName("html");
 ht[0].style.filter = "progid:DXImageTransform.Microsoft.BasicImage(grayscale=1)";
 if (confirm('你确定要退出管理?'))
 {
  window.location.href="Logout.asp";
 }
 else
 {
  ht[0].style.filter = "";
  return false;
 }
}
-->
</script>

以上就是【js 点击整页变灰的效果(可做退出效果)。】的全部内容了,欢迎留言评论进行交流!

赞(0) 踩(0)
发表我的评论

最新评论

  1. 暂无评论