欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

[asp]天楓AJAX百度音樂即時聽附下載

 更新時間:2007年09月08日 21:41:18   作者:  
輸入歌名自動會自動聯(lián)想歌名

讀取音樂地址時,背景變暗不可操作

同步LRC歌詞顯示,

用戶可自己進行擴展,整合音樂站
按此在新窗口瀏覽圖片

按此在新窗口瀏覽圖片

按此在新窗口瀏覽圖片
mp3.asp
復(fù)制代碼 代碼如下:

<%@ language="vbscript" CodePage="936"%>
<%
response.charset="gb2312"
set regex = New regexp
regex.IgnoreCase=True
regex.Global=True
songname=unescape(query("songname"))
Select Case query("s")
   case"geturl":echo geturl(songname)
   case"suggest":echo suggest()
End select

Function geturl(songname)
    page=ajax("http://mp3.baidu.com/m?f=ms&tn=baidump3&ct=134217728&lf=&rn=&word="&songname&"&lm=0","","","")
    regex.Pattern="(http)\S+\.(mp3)"
    Set urls= regex.execute(page)
    'For i=0 To urls.count-1
       'geturl=geturl&(mp3url(urls(i))&"<br/>")
    'Next
    Randomize
    i=Int(rnd()*urls.count)
    If Len(urls(i))<30 Then i=Int(rnd()*urls.count)
    url=mp3url(urls(i))
    geturl="<div>"&mplay(url)&"<a href="""&url&""">點擊鼠標(biāo)右鍵-目標(biāo)另存為下載歌曲<a></div>"
    Getlrc(songname)

End Function

Function mp3url(url)
    page=ajax("http://box.zhangmen.baidu.com/m?gate=1&ct=134217728&tn=baidumt,&word=mp3,"&url&"&lm=16777216","","","")
    regex.Pattern="(http)\S+\.(mp3)"
    Set urls= regex.execute(page)
    If urls.count>0 Then mp3url=urls(2)
End Function

Function mplay(fileUrl)
    echo"<object classid=""CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"" codebase=""http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112"" align=""baseline"" standby=""Loading Microsoft Windows Media Player components..."" type=""application/x-oleobject"" id=""mediaPlayerObj""  style=""width:300px;height:64px;border:1px solid #CCCCCC"">"
    echo"<param name=""url"" value='"&fileUrl&"'>"
    echo"<param name=""rate"" value=""10"">"
    echo"<param name=""balance"" value=""0"">"
    echo"<param name=""currentPosition"" value=""0"">"
    echo"<param name=""playCount"" value=""1"">"
    echo"<param name=""autoStart"" value=""-1"">"
    echo"<param name=""volume"" value=""60"">"
    echo"<param name=""currentMarker"" value=""0"">"
    echo"<param name=""invokeURLs"" value=""-1"">"
    echo"<param name=""stretchToFit"" value=""-1"">"
    echo"<param name=""windowlessVideo"" value=""0"">"
    echo"<param name=""enabled"" value=""-1"">"
    echo"<param name=""enableContextMenu"" value=""0"">"
    echo"<param name=""fullScreen"" value=""0"">"
    echo"<param name=""enableErrorDialogs"" value=""0"">"
    echo"<embed src="""&fileUrl&""" align=""baseline"" type=""application/x-mplayer2"" pluginspage="""" id=""mediaPlayerObj"" showcontrols=""1"" showpositioncontrols=""0"" showaudiocontrols=""1"" showtracker=""1"" showdisplay=""0"" showstatusbar=""1"" autosize=""0"" showgotobar=""0"" showcaptioning=""0"" autostart=""1"" autorewind=""0"" animationatstart=""0"" transparentatstart=""0"" allowscan=""1"" enablecontextmenu=""1"" clicktoplay=""0""  defaultframe=""datawindow"" invokeurls=""0"" style=""width:300px;height:68px;border:1px solid #FF0000""></embed>"
    echo"</object>"
End Function

Sub Getlrc(songname)
    echo"<div id=""lrcxx"" style=""display:none""></div>" 
    echo"<span id=""lrcdata"">"
    echo"<!--"
     page=ajax("http://mp3.baidu.com/m?tn=baidump3lyric&word="&songname&"&ct=150994944&lm=-1&lf=3","","","")
    If InStr(page,"抱歉,沒有找到")>0 Then
        echo "沒有找到歌詞"
        lrcurl=""
    else
        regex.Pattern="(http://)\S+\.(lrc)"
        set lrcs=regex.Execute(page)
        lrcurl=lrcs(0)
        If lrcs.count>0 Then
            echo ajax(lrcurl,"","","")
        Else
            echo "沒有找到歌詞"
        End If
    End if
    echo"-->"
    echo"</span>"
    echo"<div id=""bkk"">"
    echo"<div id=""lrcstart"">歌詞:<a href="""&lrcurl&""" target=""new"">點擊下載LRC歌詞</a></div>"
    echo"<div id=""lrcollbox"">"
    echo"<table id=""lrcoll"" style=""position:relative;top:30px;width:100%;text-align:center"">"
    echo"<tr><td><div id=""lrcwt1""></div></td></tr>"
    echo"<tr><td><div id=""lrcwt2""></div></td></tr>"
    echo"<tr><td><div id=""lrcwt3""></div></td></tr>"
    echo"<tr><td class=""kong"">"
    echo"<table border=""0"" cellspacing=""0"" cellpadding=""0"">"
    echo"<tr><td nowrap height=""30""><span id=""lrcbox"" style=""width:0;""></span></td></tr>"
    echo"<tr style=""position:relative; top: -30px; z-index:6;""><td nowrap height=""30""><span id=""lrcbc"" style=""overflow:hidden; width:0;""></span></td>"
    echo"</tr>"
    echo"</table>"
    echo"</td></tr>"
    echo"<tr style=""position:relative; top: -30px;""><td><div id=""lrcwt4""></div></td></tr>"
    echo"<tr style=""position:relative; top: -30px;""><td><div id=""lrcwt5""></div></td></tr>"
    echo"</table>"
    echo"</div>"
    echo"</div>"
End Sub

Function Suggest()
   If Trim(query("songname"))<>"" then     
       songname=Replace((query("songname")),"!","%")
       'Suggest=ajax("http://mp3.sogou.com/suggest/suggest.jsp?key="&escape(query("songname"))&"&asc=1","","","UTF-8")
      Suggest=ajax("http://music.soso.com/wh.php?"&songname,"","","")
   End if
End Function

Function Query(byval var)
    Query = request.form(var)
    if Query = "" then Query = request(var)
End Function

Function Echo(byval str)
    response.write str
End Function


Public Function AJAX(url,method,data,bm)
    If method="" Then method="get"
    If bm="" Then  bm="gb2312"
    dim http 
    Set http=Server.createobject("Microsoft.XMLHTTP") 
    Http.open method,url,false
    if LCase(method)="post" then
        Http.setrequestheader "content-length",len(data)
        Http.setrequestheader "content-type","application/x-www-form-urlencoded"
    end if
    Http.send(data) 
    if Http.readystate=4 and Http.status=200 then 
        AJAX=bytesToBSTR(Http.responseBody,"GB2312")
    end If
    set http=nothing 
End function

Public Function BytesToBstr(body,Cset)
    dim objstream
    set objstream = Server.CreateObject("ADODB"+"."+"Stream")
    with objstream
        .Type = 1
        .Mode =3
        .Open
        .Write body
        .Position = 0
        .Type = 2
        .Charset = Cset
        BytesToBstr = .ReadText 
        .Close
    end with
    set objstream = nothing
End Function

Set regex=Nothing
%>

在線演示http://www.dbjr.com.cn/demo/mp4/index.html
本地下載

相關(guān)文章

  • JQuery的ajax的用法在asp中使用$.ajax()實現(xiàn)

    JQuery的ajax的用法在asp中使用$.ajax()實現(xiàn)

    ajax的出現(xiàn)解決了很多的疑難問題,同時帶來了很多的方便,本文講述一下JQuery的ajax的用法在asp中使用$.ajax()來表示,感興趣的朋友可以了解下,或許本文對你有所幫助
    2013-01-01
  • Ajax基礎(chǔ)與登入教程

    Ajax基礎(chǔ)與登入教程

    Ajax 是 Asynchronous JavaScript and XML的縮寫。其優(yōu)點可以減輕服務(wù)器的負擔(dān),按需取數(shù)據(jù),最大程度的減少冗余請求。接下來通過本文給大家介紹Ajax基礎(chǔ)與登入教程,需要的的朋友參考下
    2017-03-03
  • html+ajax實現(xiàn)上傳大文件功能

    html+ajax實現(xiàn)上傳大文件功能

    這篇文章主要為大家詳細介紹了html+ajax實現(xiàn)上傳大文件功能,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2017-11-11
  • Ajax Hacking

    Ajax Hacking

    [紅色]Ajax Hacking...
    2006-11-11
  • 使用AJAX完成用戶名是否存在異步校驗

    使用AJAX完成用戶名是否存在異步校驗

    這篇文章主要介紹了使用AJAX完成用戶名是否存在異步校驗的相關(guān)資料,需要的朋友可以參考下
    2016-12-12
  • 深入剖析$.ajax()方法

    深入剖析$.ajax()方法

    下面小編就為大家?guī)硪黄钊肫饰?.ajax()方法。小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考
    2016-04-04
  • 菜鳥蔡之Ajax復(fù)習(xí)第一篇(后臺asp.net)(傳統(tǒng)的JavaScript方法實現(xiàn)Ajax功能)

    菜鳥蔡之Ajax復(fù)習(xí)第一篇(后臺asp.net)(傳統(tǒng)的JavaScript方法實現(xiàn)Ajax功能)

    Ajax是Asynchronous JavaScript and XML,其核心是通過XMLHttpRequest對象以一種異步的方式向服務(wù)器發(fā)送請求,并通過該對象接收請求返回的數(shù)據(jù),從而完成人機交互的數(shù)據(jù)操作(呵呵、、、說的有點嚇人!)
    2012-11-11
  • 無框架 Ajax分頁(原創(chuàng))

    無框架 Ajax分頁(原創(chuàng))

    最近想做一個Ajax的功能,網(wǎng)上一搜幾乎全是基于某某框架的Ajax分頁,要么需給頁面加上<scriptManager></scriptManager>,要么需引入某dll,要么需使用類似于jquery的框架。
    2009-08-08
  • 非常簡單的Ajax請求實例附源碼

    非常簡單的Ajax請求實例附源碼

    這篇文章為大家推薦了一個非常簡單的Ajax請求實例,可以在不重載頁面的情況與 Web 服務(wù)器交換數(shù)據(jù),感興趣的小伙伴們可以參考一下
    2015-11-11
  • ajax用json實現(xiàn)數(shù)據(jù)傳輸

    ajax用json實現(xiàn)數(shù)據(jù)傳輸

    本文主要介紹了ajax用json實現(xiàn)數(shù)據(jù)傳輸?shù)姆椒ǎ哂泻芎玫膮⒖純r值。下面跟著小編一起來看下吧
    2017-03-03

最新評論