扣代码工具hta版
来源: 阅读:772 次 日期:2016-06-20 09:51:41
温馨提示: 小编为您整理了“扣代码工具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 文件查找的辛苦。

其他功能请自己琢磨。

更多信息请查看脚本栏目
手机网站地址:扣代码工具hta版
由于各方面情况的不断调整与变化, 提供的所有考试信息和咨询回复仅供参考,敬请考生以权威部门公布的正式信息和咨询为准!

2025国考·省考课程试听报名

  • 报班类型
  • 姓名
  • 手机号
  • 验证码
关于我们 | 联系我们 | 人才招聘 | 网站声明 | 网站帮助 | 非正式的简要咨询 | 简要咨询须知 | 加入群交流 | 手机站点 | 投诉建议
工业和信息化部备案号:滇ICP备2023014141号-1 云南省教育厅备案号:云教ICP备0901021 滇公网安备53010202001879号 人力资源服务许可证:(云)人服证字(2023)第0102001523号
云南网警备案专用图标
联系电话:0871-65317125(9:00—18:00) 获取招聘考试信息及咨询关注公众号:
咨询QQ:526150442(9:00—18:00)版权所有:
云南网警报警专用图标
Baidu
map