音乐播放页怎样调用歌曲图片

作者:动易网络 来源:动易网络 点击数: 发布时间:2009年06月02日

问题:音乐播放页怎样调用歌曲图片

注意:区分注意大小写!

解决方法:

第一步,后台管理 >> 系统设置 >> 模板标签管理 >> 标签管理,搜索“音乐播放列表生成”标签,标签内容编辑,找到标签内容:


" xmlns:pe="labelproc" exclude-result-prefixes="pe">





改为:(加上红色代码)


" xmlns:pe="labelproc" exclude-result-prefixes="pe">





然后保存标签。

 

第二步,找到根目录下的JS/MusicControl.js ,然后用记事本或者编辑工具打开,找到代码:(108~118行)

    var lrcUrl = musicList.options[musicList.selectedIndex].lrcUrl;
    document.getElementById("MusicPlayer").Url = musicList.options[musicList.selectedIndex].value;
    document.getElementById("MusicTitle").innerText = musicList.options[musicList.selectedIndex].musicName + "(" + musicList.options[musicList.selectedIndex].singer + ")";
    document.getElementById("Singer").innerText = musicList.options[musicList.selectedIndex].singer;
    document.getElementById("Style").innerText = musicList.options[musicList.selectedIndex].styles;
    document.getElementById("Language").innerText = musicList.options[musicList.selectedIndex].language;
    document.getElementById("IssusingDate").innerText = musicList.options[musicList.selectedIndex].issusingDate;
    document.getElementById("RecordCompany").innerText = musicList.options[musicList.selectedIndex].recordCompany;
    document.getElementById("Intro").innerText = musicList.options[musicList.selectedIndex].intro;
     try { IdDownload.startDownload(lrcUrl, LrcRun); } catch (hh) { }
    CheckPlayState();

改为:(加上红色代码)

    var lrcUrl = musicList.options[musicList.selectedIndex].lrcUrl;
    document.getElementById("MusicPlayer").Url = musicList.options[musicList.selectedIndex].value;
    document.getElementById("MusicTitle").innerText = musicList.options[musicList.selectedIndex].musicName + "(" + musicList.options[musicList.selectedIndex].singer + ")";
    document.getElementById("Singer").innerText = musicList.options[musicList.selectedIndex].singer;
    document.getElementById("Style").innerText = musicList.options[musicList.selectedIndex].styles;
    document.getElementById("Language").innerText = musicList.options[musicList.selectedIndex].language;
    document.getElementById("IssusingDate").innerText = musicList.options[musicList.selectedIndex].issusingDate;
    document.getElementById("RecordCompany").innerText = musicList.options[musicList.selectedIndex].recordCompany;
    document.getElementById("Intro").innerText = musicList.options[musicList.selectedIndex].intro;
 document.getElementById('MusicPic').innerHTML = '';
    try { IdDownload.startDownload(lrcUrl, LrcRun); } catch (hh) { }
    CheckPlayState();

修改好后保存即可。

 

第三步,找到 内容页模板/默认音乐播放页.html  ,用记事本打开,然后把下面红色代码放您想要放的位置即可。

               

歌手:

               
风格:

               
语言:

               
发行日期:

               
唱片公司:

               
内容简介:

              
歌曲图片:

完成。

 

文件下载:点击下载