问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501

请哪位高手把www.menllo.com/weixiao页面上的播放器代码搞到.赏金20

发布网友 发布时间:2022-05-02 15:27

我来回答

2个回答

热心网友 时间:2022-06-20 15:59

该页相关代码如下---------------------------------------------------
<div id="mymusicbox_content" class="molebar">
<div id="ctl09_spanMoleContent" style="position:relative;" class="molebar_text">
<script type="text/javascript" src="/private/js/swfobject.js"></script>
<div style="position:relative;width:100%;text-align:center;" id="music_container">
<script type="text/javascript">
new SWFObject('/images/private/music/mp3player.swf?userGuid=662cb6ad-6647-4bea-ac92-8f33fbdb1cd1','playmusic',164,130,'Transparent').write('music_container');
</script>
</div>

<div id="ctl09_ctl00_divMusicBoxMore" style="width:100%;text-align:right;margin-top:5px;"><a href="http://www.menllo.com/weixiao/music" target="_blank">[浏览我的更多音乐]</a></div>
</div>

<contentbg></contentbg>
</div>
</div>

相关js调用的swfobject.js文件代码如下--------------------------------

/**
* SWFObject v1.4: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
*
* SWFObject is (c) 2006 Geoff Stearns and is released under the MIT License:
* http://www.opensource.org/licenses/mit-license.php
*
* **SWFObject is the SWF embed script formerly known as FlashObject. The name was changed for
* legal reasons.
*/
if(typeof deconcept=="undefined"){var deconcept=new Object();}
if(typeof deconcept.util=="undefined"){deconcept.util=new Object();}
if(typeof deconcept.SWFObjectUtil=="undefined"){deconcept.SWFObjectUtil=new Object();}
deconcept.SWFObject=function(_1,id,w,h,_5,c,_7,_8,_9,_a,_b){
if(!document.createElement||!document.getElementById){return;}
this.DETECT_KEY=_b?_b:"detectflash";
this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);
this.params=new Object();
this.variables=new Object();
this.attributes=new Array();
if(_1){this.setAttribute("swf",_1);}
if(id){this.setAttribute("id",id);}
if(w){this.setAttribute("width",w);}
if(h){this.setAttribute("height",h);}
if(_5){this.setAttribute("version",new deconcept.PlayerVersion(_5.toString().split(".")));}
this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion(this.getAttribute("version"),_7);
if(c){this.addParam("bgcolor",c);}
var q=_8?_8:"high";
this.addParam("quality",q);
this.setAttribute("useExpressInstall",_7);
this.setAttribute("doExpressInstall",false);
var _d=(_9)?_9:window.location;
this.setAttribute("xiRedirectUrl",_d);
this.setAttribute("redirectUrl","");
if(_a){this.setAttribute("redirectUrl",_a);}};
deconcept.SWFObject.prototype={setAttribute:function(_e,_f){
this.attributes[_e]=_f;
},getAttribute:function(_10){
return this.attributes[_10];
},addParam:function(_11,_12){
this.params[_11]=_12;
},getParams:function(){
return this.params;
},addVariable:function(_13,_14){
this.variables[_13]=_14;
},getVariable:function(_15){
return this.variables[_15];
},getVariables:function(){
return this.variables;
},getVariablePairs:function(){
var _16=new Array();
var key;
var _18=this.getVariables();
for(key in _18){
_16.push(key+"="+_18[key]);}
return _16;
},getSWFHTML:function(){
var _19="";
if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){
if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","PlugIn");}
_19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\"";
_19+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";
var _1a=this.getParams();
for(var key in _1a){_19+=[key]+"=\""+_1a[key]+"\" ";}
var _1c=this.getVariablePairs().join("&");
if(_1c.length>0){_19+="flashvars=\""+_1c+"\"";}
_19+="/>";
}else{
if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");}
_19="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\">";
_19+="<param name=\"wmode\" value=\"transparent\">";
_19+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";
var _1d=this.getParams();
for(var key in _1d){_19+="<param name=\""+key+"\" value=\""+_1d[key]+"\" />";}
var _1f=this.getVariablePairs().join("&");
if(_1f.length>0){_19+="<param name=\"flashvars\" value=\""+_1f+"\" />";}
_19+="</object>";}
return _19;
},write:function(_20){
if(this.getAttribute("useExpressInstall")){
var _21=new deconcept.PlayerVersion([6,0,65]);
if(this.installedVer.versionIsValid(_21)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){
this.setAttribute("doExpressInstall",true);
this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));
document.title=document.title.slice(0,47)+" - Flash Player Installation";
this.addVariable("MMdoctitle",document.title);}}
if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){
var n=(typeof _20=="string")?document.getElementById(_20):_20;
n.innerHTML=this.getSWFHTML();
return true;
}else{
if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));}}
return false;}};
deconcept.SWFObjectUtil.getPlayerVersion=function(_23,_24){
var _25=new deconcept.PlayerVersion([0,0,0]);
if(navigator.plugins&&navigator.mimeTypes.length){
var x=navigator.plugins["Shockwave Flash"];
if(x&&x.description){_25=new deconcept.PlayerVersion(x.description.replace(/([a-z]|[A-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));}
}else{try{
var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
for(var i=3;axo!=null;i++){
axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+i);
_25=new deconcept.PlayerVersion([i,0,0]);}}
catch(e){}
if(_23&&_25.major>_23.major){return _25;}
if(!_23||((_23.minor!=0||_23.rev!=0)&&_25.major==_23.major)||_25.major!=6||_24){
try{_25=new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));}
catch(e){}}}
return _25;};
deconcept.PlayerVersion=function(_29){
this.major=parseInt(_29[0])!=null?parseInt(_29[0]):0;
this.minor=parseInt(_29[1])||0;
this.rev=parseInt(_29[2])||0;};
deconcept.PlayerVersion.prototype.versionIsValid=function(fv){
if(this.major<fv.major){return false;}
if(this.major>fv.major){return true;}
if(this.minor<fv.minor){return false;}
if(this.minor>fv.minor){return true;}
if(this.rev<fv.rev){return false;}return true;};
deconcept.util={getRequestParameter:function(_2b){
var q=document.location.search||document.location.hash;
if(q){
var _2d=q.indexOf(_2b+"=");
var _2e=(q.indexOf("&",_2d)>-1)?q.indexOf("&",_2d):q.length;
if(q.length>1&&_2d>-1){
return q.substring(q.indexOf("=",_2d)+1,_2e);
}}return "";}};
if(Array.prototype.push==null){
Array.prototype.push=function(_2f){
this[this.length]=_2f;
return this.length;};}
var getQueryParamValue=deconcept.util.getRequestParameter;
var FlashObject=deconcept.SWFObject; // for backwards compatibility
var SWFObject=deconcept.SWFObject;

相关原始flash播放器下载地址-----------------------------------------
http://www.menllo.com/images/private/music/mp3player.swf

热心网友 时间:2022-06-20 16:00

<div id="ctl09_ctl00_divMusicBoxMore" style="width:100%;text-align:right;margin-top:5px;"><a href="http://www.menllo.com/weixiao/music" target="_blank">[浏览我的更多音乐]</a></div>
声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com
梦见穿堂风 没有爱情我们一样会快乐的对吗 没有爱情的人会快乐么? 解除合同的效力有什么 合同解除会产生什么法律效力 合同解除后,哪些条款仍具效力? 合同解除产生哪些效力呢 民法典中合同解除产生哪些效力 解除合同的效力有哪些 济南七中学校怎么样 暗黑3为什么加入不了别人创建的房间 暗黑3无法加入该队伍的游戏 暗黑3 聊天频道在哪 暗黑三刚玩有几个问题不懂,请教下 1:问下我把游戏设成公共游戏,我没和任何人组队,为什么刚进去就有 暗黑破坏神3无法加入游戏 暗黑3美服怎么进入英语频道 暗黑3 怎么加入公共聊天频道,以前进游戏的时候左下聊天栏里会显示“点击进入公共聊天频道”现在没了?谢谢 暗黑3怎样加入自己想要进的频道?有时名字一样但进的不是一个,“#”后面的数字不一样...... 暗黑破坏神3被踢出队无法加入游戏怎么办 今天玩暗黑3 更新后 登陆游戏 出现加入频道错误 错误3 什么意思啊? 暗黑破坏神3社区聊天频道进不去是什么意思 暗黑三无法加入公共聊天频道怎么回事 女人因出轨而离婚,再嫁给情人是什么体验呢? 中年女人出轨和老公离婚嫁情人,有后悔的吗 为了情人离婚值得吗? 男人的婚外情,离婚三年很后悔,情人的爱情不好吗? 为了情人离婚后,男子崩溃大哭:我到底图什么? 男人为了小三抛弃妻子离婚后会后悔吗 你会因为哪些原因和你的爱人离婚?你会后悔吗? 男子为了情人跟妻子离了婚,他有后悔过吗? 暗黑破坏神3怎么没人玩?加入综合,交易聊天频道却看不到一个人在上面聊天 请问暗黑破坏神3中什么是游戏进度,公共频道,公开游戏,他们升级各自如何?谢谢!!! 暗黑3能登陆可以看公共频道就是与服务器连接中断 暗黑3怎么世界发话 搞几个好的动漫网站!!! 请问暗黑3 如何切换到队伍频道 求一部搞笑电影的名字 打开浏览器就是这个网页:http://www.pp2345.com/ 怎么搞掉啊? www.张伟是混蛋.com 爱情公寓第二季 太搞了。希望还有第三第四第五第六 第n集哈哈哈哈哈 www.lsbzw.com里面的视频是怎么搞的? 我想给自己搞个网站,就像www.****.com的域名怎么申请啊?还有我的网站空间选什么样的? 8K电视现在哪个牌子的好用? 公司对我的评语三观覆盖不是做梦就是喝酒 员工对公司的评语 在EXCEL中,如何实现文本框的颜色逐渐变浅 眼镜店的人性化服务措施有哪些 卖眼镜的时候怎么与顾客交流 眼镜店怎样维护好与顾客间的关系 如何在显示桌面图标的情况下把回收站的图标隐藏掉啊?求指教 2.2.10.9怎么算等于24点?