扣代碼工具hta版
來源:易賢網(wǎng) 閱讀:802 次 日期:2016-06-20 09:51:41
溫馨提示:易賢網(wǎng)小編為您整理了“扣代碼工具hta版”,方便廣大網(wǎng)友查閱!

復(fù)制下面的代碼,最好用editplus等專業(yè)點的編輯工具。

代碼如下:

<!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>頁面內(nèi)容捕獲器</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); //窗口關(guān)閉后自動退出程序

    //頁面卸載時關(guān)閉瀏覽器

    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;>導(dǎo)出html</a>

          |  

        <a href=### onclick=showcapturecurrentstyle(); return false;>導(dǎo)出其當(dāng)前樣式</a>

          |  

        <a href=### onclick=showcaptureallevent(); return false;>導(dǎo)出其綁定的所有事件</a>

    </li>

    <li>

        導(dǎo)出內(nèi)部樣式表:

        <a href=### onclick=doexportinnercss(); return false;>導(dǎo)出</a>

    </li>

    <li>

        導(dǎo)出js函數(shù):

        <input type=text value= onfocus=this.value=''; size=30 id=funcname>

          |  

        <a href=### onclick=doexportfunction(); return false;>導(dǎo)出</a>

    </li>

    <li>

        導(dǎo)出的數(shù)據(jù):

          |  

        <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. 運行后會出現(xiàn)一個程序窗口和一個ie瀏覽器窗口,上下排列

3.在瀏覽器中輸入需要扣代碼的網(wǎng)站地址,回車進去需要的站點

4.在需要扣代碼的效果上點擊鼠標(biāo),例如上圖中的鏈接??梢钥吹匠绦虼翱谥幸呀?jīng)捕獲到了這個對象。如果需要其父對象,只需要單擊程序窗口中的 “獲取其父對象” 鏈接。

5. 單擊程序窗口中的 “導(dǎo)出html” 鏈接,可以得到當(dāng)前對象的html內(nèi)容(即使這個內(nèi)容是用腳本動態(tài)生成的也可以捕獲)

6.在 “導(dǎo)出js函數(shù)” 后的文本框中輸入想查看的 js函數(shù)名(支持 “gbar.qs” 這種形式),可以得到 js 函數(shù)內(nèi)容。免去一個一個外部 js 文件查找的辛苦。

其他功能請自己琢磨。

更多信息請查看腳本欄目
易賢網(wǎng)手機網(wǎng)站地址:扣代碼工具hta版
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!

2025國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 加入群交流 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號:hfpxwx
咨詢QQ:526150442(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報警專用圖標(biāo)