扣代码工具 hta版

复制下面的代码,最好用editplus等专业点的编辑工具。


代码如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>页面内容捕获器</title>
<style>
* { font-size:12px; }
html { padding:0px; margin:0px; border-style:none; border-width:0px; overflow:auto; background-color:buttonface; }
body { padding:0px; margin:0px; border-style:none; border-width:0px; background-color:buttonface; }
li { line-height:24px; height:24px; margin:10px 0px -10px 15px; }
a { color:blue; }
input { border-width:1px; }
#output { width:90%; height:150px; overflow:auto; }
</style>
<script>
var win;
function $(s){ return document.getElementById(s); }
window.onload = function(){
    var myHeight = 320;
    window.moveTo(0,0);
    window.resizeTo(screen.availWidth, myHeight);
    //打开一个浏览器
    win = new ActiveXObject("InternetExplorer.Application");
    win.left = 0; win.top = myHeight;
    win.width = screen.availWidth; win.height = screen.availHeight - myHeight;
    win.navigate2("about:blank");
    win.visible = true;
    setInterval(function(){ try{ win.document; }catch(e){ window.close(); } }, 1); //窗口关闭后自动退出程序
    //页面卸载时关闭浏览器
    window.onunload = function(){ win.quit(); }
    //自动捕获
    setInterval(doCapture, 1);
}
function doCapture(){
    try{
        win.document.onclick = capIt;
    }catch(e){}
}
function capIt(){
    var d = win.document, w = d.parentWindow, e = w.event, el = e.srcElement;
    $("currentObj").bound = el;
    $("currentObj").innerHTML = el.tagName;
    showCapture(el);
    e.cancelBubble = true;
    e.returnValue = false;
    return false;
}
function showCapture(el){
    if(!el)return;
    var oldBorderStyle = el.style.borderStyle, oldBorderWidth = el.style.borderWidth, oldBorderColor = el.style.borderColor;
    el.style.border = "2px solid red";
    setTimeout(function(){ try{ el.style.borderStyle = oldBorderStyle; el.style.borderWidth = oldBorderWidth; el.style.borderColor = oldBorderColor; }catch(e){} }, 300);
}
function parentCapture(){
    var el = $("currentObj").bound;
    if(!el || !el.parentNode || el.parentNode.nodeType != 1 )return;
    el = el.parentNode;
    $("currentObj").bound = el;
    $("currentObj").innerHTML = el.tagName;
    showCapture(el);
}
function showCaptureCurrentStyle(){
    var el = $("currentObj").bound;
    if(!el)return;
    var re = [], s = el.currentStyle;
    for(var i in s)if(s[i] != "")re.push(i+":"+s[i]+";");
    $("output").value += "\r\n<!--Current Style:\r\n" + re.join(" ") + "\r\n-->\r\n";
}
function showCaptureAllEvent(){
    var el = $("currentObj").bound, re = [];
    if(!el)return;
    for(var i in el)if(String(i).indexOf("on") == 0 && el[i])re.push(String(el[i]));
    $("output").value += "\r\n<!--All Bound Event:\r\n" + re.join("\r\n") + "\r\n-->\r\n";
}
function doExportHTML(){
    if(!$("currentObj").bound)return;
    $("output").value += "\r\n" + $("currentObj").bound.outerHTML + "\r\n";
}
function doExportInnerCSS(){
    var o = win.document.getElementsByTagName("style");
    for(var i=0; i<o.length; i++)$("output").value += "\r\n<style>\r\n" + o[i].innerHTML + "\r\n<\/style>\r\n";
}
function doExportFunction(){
    var o = win.document.parentWindow, str = $("funcName").value.split("."), i = -1;
    while(++i< str.length && (o = o[str[i]]));
    if(!o)return;
    $("output").value += "\r\n<script>\r\n" + o + "\r\n<\/script>\r\n";
}
function doTest(){
    var nw = window.open("", "_blank");
    nw.document.open();
    nw.document.write($("output").value);
    nw.document.close();
}
</script>
</head>
<body>
<ul>
    <li>
        目前已捕获到对象:
        <a href="###" onclick="showCapture(this.bound); return false;" id="currentObj">无</a>    <<   
        <a href="###" onclick="parentCapture(); return false;">获取其父对象</a>
          |  
        <a href="###" onclick="doExportHTML(); return false;">导出HTML</a>
          |  
        <a href="###" onclick="showCaptureCurrentStyle(); return false;">导出其当前样式</a>
          |  
        <a href="###" onclick="showCaptureAllEvent(); return false;">导出其绑定的所有事件</a>

</li>
    <li>
        导出内部样式表:
        <a href="###" onclick="doExportInnerCSS(); return false;">导出</a>
    </li>
    <li>
        导出JS函数:
        <input type="text" value="" onfocus="this.value='';" size="30" id="funcName">
          |  
        <a href="###" onclick="doExportFunction(); return false;">导出</a>
    </li>
    <li>
        导出的数据:
          |  
        <a href="###" onclick="doTest(); return false;">测试</a>
          |  
        <a href="###" onclick="$('output').value=''; return false;">清除</a>
        <br/>
        <textarea id="output"></textarea>
    </li>
</ul>
</body>
</html>

使用方法是这样的:
1. 压缩包中的文件
2. 运行后会出现一个程序窗口和一个IE浏览器窗口,上下排列
3.在浏览器中输入需要扣代码的网站地址,回车进去需要的站点
4.在需要扣代码的效果上点击鼠标,例如上图中的链接。可以看到程序窗口中已经捕获到了这个对象。如果需要其父对象,只需要单击程序窗口中的 “获取其父对象” 链接。
5. 单击程序窗口中的 “导出HTML” 链接,可以得到当前对象的HTML内容(即使这个内容是用脚本动态生成的也可以捕获)
6.在 “导出JS函数” 后的文本框中输入想查看的 JS函数名(支持 “gbar.qs” 这种形式),可以得到 JS 函数内容。免去一个一个外部 JS 文件查找的辛苦。
其他功能请自己琢磨。
有什么疑问请留言。
文件打包下载 http://xiazai.jb51.net/200909/yuanma/buhuozhe.rar

(0)

相关推荐

  • 扣代码工具 hta版

    复制下面的代码,最好用editplus等专业点的编辑工具. 复制代码 代码如下: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <he

  • ASP 辅助工具(hta版)

    使用方法:保存为ASPTools.hta然后再运行 复制代码 代码如下: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1- transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head&

  • vpn连接程序hta版实现代码(修改)

    复制代码 代码如下: <HTA:APPLICATION ID="MySampleHTA" Caption="yes" SCROLL="auto" border="none" borderStyle="static" SINGLEINSTANCE="yes" maximizebutton="no" BORDER="no" icon="

  • js验证手机号、密码、短信验证码代码工具类

    本文实例为大家分享了js验证手机号.密码.短信验证码的代码工具类,供大家参考,具体内容如下 代码工具类 /** * 参数较验 * * */ var verification = { stop : false, //倒计时 //验证手机号 phone : function (tel, id) { if ("" == tel || !tel) { mui.toast('手机号不可以为空!'); } else { var reg = /^0?1[3|4|5|7|8][0-9]\d{8}$/;

  • XMLDOM下载者生成器代码(xmldown.hta)

    以下代码保存成hta文件,可生成js和vbs下载者 复制代码 代码如下: <HTA:APPLICATION ID="xmldown" Caption="yes" SCROLL="auto" border="none" borderStyle="static" SINGLEINSTANCE="yes" maximizebutton="no" BORDER=&quo

  • 卡巴病毒库备份工具 专用版!

    卡巴病毒库备份工具 专用版! 每次GHOST还原系统后,最麻烦的恐怕就是等待更新病毒库了,而且那个卡巴,可能是 身体不太好,升级真的是太慢太慢了,呵呵! 所以自己就写了这个卡巴病毒库更新软件,网上也有相关软件,可是感觉用着不爽,呵呵,大家感觉那个舒服就用那个吧! 点击下载

  • C#飞机打字游戏的代码示例(winform版)

    游戏界面 程序代码 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using System.Media; namesp

  • springboot框架阿里开源低代码工具LowCodeEngine

    目录 前言 LowCodeEngine简介 搭建低代码平台 使用低代码平台 目标效果 总结 前言 解放双手!推荐一款阿里开源的低代码工具,YYDS! 之前分享过一些低代码相关的文章,发现大家还是比较感兴趣的.之前在我印象中低代码就是通过图形化界面来生成代码而已,其实真正的低代码不仅要负责生成代码,还要负责代码的维护,把它当做一站式开发平台也不为过!最近体验了一把阿里开源的低代码工具LowCodeEngine,确实是一款面向企业级的低代码解决方案,推荐给大家! SpringBoot实战电商项目ma

  • javascript操作xml(增删改查)例子代码hta版

    包括了stu.hta(是HTML应用程序);      stu.xml 注意下面的HTML代码必须保存为后缀名为hta否则当对XML文件进行操作(增删改)的时候就会提示没有权限!! 文件stu.hta代码如下: 复制代码 代码如下: <html> <head> <title> 数据岛的显示 </title> <style type="text/css"> #findPanel { position:absolute; widt

  • 风讯注入exp(hta版)代码发布

    <SCRIPT LANGUAGE="VBScript"> Sub Window_onLoad     window.resizeTo 450,380     window.moveTo 300, 300 End Sub  </SCRIPT> <SCRIPT LANGUAGE="VBScript"> Function getHTTPPage(Path)        t = GetBody(Path)        getHTTPP

随机推荐