zoukankan      html  css  js  c++  java
  • JS window对象常用

      function scrollleft()
      {
         var tle=document.title;
         var first=tle.charAt(0);
         var last=tle.substring(1,tle.length);
         //获取当前的titile文本
         document.title=last+first;
      }
      
      //可以重复循环
       setInterval("scrollleft()",500);
       clearInterval(10000);
       //只执行一次
       setTimeout("scrollleft()",500);
       clearTimeout(10000);
      // <body onbeforeunload="window.event.returnValue='hello'">  弹出对话框,是否关闭当前页面
      //跳转到该页面
       navigate(http://www.baidu.com);
       //获取当前浏览器的地址,设置当前浏览器的地址
        location.href=http://www.baidu.com;
        //页面刷新
        window.location.reload();
        //判断是否按下某个键
        if(window.event.altKey) 
        {
          alert("alt");
        }
        else
        {
         alert("otherkey");
        }
        //禁止数据提交
        onclick=alert("数据错误");window.event.returnValue=false;
        //判断屏幕分辨率
        
        if(screen.width<1024 || screen.height<768)
        {
           alert("分辨率太低,无法正常显示!");
        }
        //操作剪贴板
        clipboardData.getData("Text");
        clipboardData.setData("Text",val);
        clipboardData.clearData("Text");
        //前进后退
        window.history.back();
        window.history.forward();
        window.history.go(-1);
        window.history.go(1);
        
        //用于嵌套javascript脚本,广告
        document.write()
    
  • 相关阅读:
    谁是你随时可以说话的人
    我们在帝都这么拼,为的是什么?
    CVE-2016-4758: UXSS in Safari's showModalDialog
    JSON-SCHEMA
    JS城市data
    linux(centos )mongodb install
    python pip install
    基于chrome内核的UXSS
    Trying to hack Redis via HTTP requests
    Apache Solr 访问权限控制
  • 原文地址:https://www.cnblogs.com/anbylau2130/p/3093749.html
Copyright © 2011-2022 走看看