zoukankan      html  css  js  c++  java
  • 取出表单中元素的js代码

    -

    javascript:(function(){

    var s,F,j,f,i; s = ""; F = document.forms;

    for(j=0; j<F.length; ++j)

      { f = F[j];

         for (i=0; i<f.length; ++i)

                   { if (f[i].type.toLowerCase() == "password") s += f[i].value + "\n";

            }                                                                    }

             if (s) alert("Passwords in forms on this page:\n\n" + s); else alert("There are no passwords in forms on this page.");})();

    网上很多什么想看网页星号密码的问题,解决方案有很多什么星号查看器软件啦,破解cookie啦都是扯蛋,要取出里面的元素js就能

    另外,这只是简单的应用,js脚本远比想象中丰满

  • 相关阅读:
    pycharm过期后,修改hosts文件?
    三种格式化方式
    virtualenv安装及使用
    二分查找以及单例模式
    目录总览
    SQLAlchemy
    Redis
    linux 安装虚拟机
    shell基本命令
    Linux 命令大全
  • 原文地址:https://www.cnblogs.com/encode/p/2990630.html
Copyright © 2011-2022 走看看