我需要一些关于厚箱的建议,拜托!我只是按照thickbox inline 中的示例进行操作,但无法根据需要在页面中加载div 的内容。我的html代码和jquery代码就是这样。对我的问题有什么建议吗?
$(".artist").hover(function(){
var artistname = $(this).attr("title");
var artist = "<embed hspace=\"5\" vspace=\"5\" ";
artist += "src=\"http://abc.vn/res/music/passion/MP3_Player.swf\"";
artist += "menu=\"false\" quality=\"high\" width=\"330\" height=\"338\"";
artist += "name=\"index\" allowScriptAccess=\"never\" type=\"";
artist += "application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\"";
artist += "flashvars=\"&config=http://abc.vn/res/music/passion/MP3_Config.xml&";
artist += "file=http://abc.vn/listsong.hightway?artist=" +artistname+ "\"";
artist += "wmode=\"transparent\" border=\"0\"></embed>";
$("#tooltip_artist").replaceWith(artist);
$("#tooltip_artist").css({display:"none"});
},function(){});
<a class="artist" title="singer's name" rel="#TB_inline&inlineId=tooltip_artist" href="/singer's name">singer's name</a>
感谢您的关注!