怎么偷取别人网页中的一段代码

2025-02-07 12:36:38
推荐回答(5个)
回答1:

这个简单,但是要修改撑一段理想的代码就要精通代码才行。方法如下:

1、用360浏览器打开改网址,然后单击右键查看源代码。

2,然后复制代码保存再修改。

回答2:

动态的用xml
静态用iframe

主要看懂下面的代码,title2就是分段采集

'功能:asp采集代码
url=Request.QueryString("ID")
url = Replace( url, "(.*)", "" )
str=getHTTPPage(url)
'title=strcut(str,"","",2)
'截取文字转换
'title = Replace( title, "", "" )
content=str
'截取分段方法
title2=strcut(str,"","",2)
if title2="" then
title="◆"&month(now)&day(now)&hour(now)&minute(now)&second(now)&""
Else title=title2
title = Replace( title, "|", "" )
title = Replace( title, " ", "" )
End if
response.write ""&content&"

"%><%
Function getHTTPPage(url)
On Error Resume Next
dim http
set http=Server.createobject("Microsoft.XMLHTTP")
Http.open "GET",url,false
Http.send()
if Http.readystate<>4 then
exit function
end if
getHTTPPage=bytesToBSTR(Http.responseBody,"GB2312")
set http=nothing
If Err.number<>0 then
Response.Write "

服务器获取文件内容出错

"
Err.Clear
End If
End Function
Function BytesToBstr(body,Cset)
dim objstream
set objstream = Server.CreateObject("adodb.stream")
objstream.Type = 1
objstream.Mode =3
objstream.Open
objstream.Write body
objstream.Position = 0
objstream.Type = 2
objstream.Charset = Cset
BytesToBstr = objstream.ReadText
objstream.Close
set objstream = nothing
End Function
'截取字符串,1.包括起始和终止字符,2.不包括
Function strCut(strContent,StartStr,EndStr,CutType)
Dim strHtml,S1,S2
strHtml = strContent
On Error Resume Next
Select Case CutType
Case 1
S1 = InStr(strHtml,StartStr)
S2 = InStr(S1,strHtml,EndStr)+Len(EndStr)
Case 2
S1 = InStr(strHtml,StartStr)+Len(StartStr)
S2 = InStr(S1,strHtml,EndStr)
End Select
If Err Then
strCute = "

没有找到需要的内容。

"
Err.Clear
Exit Function
Else
strCut = Mid(strHtml,S1,S2-S1)
End If
End Function

回答3:

那个意思和同步更新差不多,不过暂时还没有发现有这个功能,就算要实现还是要靠手工更新

回答4:

那段东西要是数据应该可以,要是指令估计不行。

回答5:

右键查看网页源代码