可以模仿QQ空間里有圖片的話就在標(biāo)題后顯示有附件的圖片
asp/Visual Basic代碼:
程序代碼
<%
'***************************************************
'*函數(shù)名 : GetImgFromContent
'*參數(shù)說明 : html 被提取的html 代碼
'*功能簡介 : 提取這部分html代碼中的圖片
'*程序作者 : evio http://www.backci.cn/code
'*http://www.companysz.com/
'***************************************************
function GetImgFromContent(html)
Dim Re, match, matchs, htm, t
htm = ""
set Re = new RegExp
re.IgnoreCase =True
re.Global = True
re.Pattern = "<img [^<]*src=""(.*)""[^>]*>" '--<img [^<]*src=""(.*)""[^>]*>
Set matchs = re.Execute(html)
for each match in matchs
htm = htm + (match.SubMatches(0)) & "|$|"
next
set matchs = nothing
t = split(htm, "|$|")(0)
if len(t) = 0 or t = "" then
t = "_template_Images/ end if
ze = "<img src='" & t & "' width='191' height='119' />"
end function
%>
新聞熱點(diǎn)
疑難解答
圖片精選
網(wǎng)友關(guān)注